Sharpen.ObjectInputStream.ReadInt C# (CSharp) Method

ReadInt() public method

public ReadInt ( ) : int
return int
		public int ReadInt ()
		{
			return this.reader.ReadInt32 ();
		}

Usage Example

Example #1
0
		/// <exception cref="System.IO.IOException"></exception>
		private void ReadObject(ObjectInputStream ois)
		{
			w1 = ois.ReadInt();
			w2 = ois.ReadInt();
			w3 = ois.ReadInt();
			w4 = ois.ReadInt();
			w5 = ois.ReadInt();
		}
All Usage Examples Of Sharpen.ObjectInputStream::ReadInt