Mono.StreamHelper.WriteInt C# (CSharp) 메소드

WriteInt() 공개 정적인 메소드

public static WriteInt ( this stream, int n ) : void
stream this
n int
리턴 void
		public static void WriteInt (this Stream stream, int n)
		{
			byte [] bytes = converter.GetBytes (n);
			stream.Write (bytes, 0, bytes.Length);
		}