public float ReadSingle()

in src/main/csharp/StreamMessage.cs [153:164]


		public float ReadSingle()
		{
			try
			{
				return this.tibcoStreamMessage.ReadFloat();
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}