public double ReadDouble()

in src/main/csharp/StreamMessage.cs [88:99]


		public double ReadDouble()
		{
			try
			{
				return this.tibcoStreamMessage.ReadDouble();
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}