Write() private static method

private static Write ( SafeFileHandle fd, byte bufPtr, int count ) : void
fd SafeFileHandle
bufPtr byte
count int
return void
コード例 #1
0
ファイル: ConsolePal.Unix.cs プロジェクト: rogeryu23/corefx
            public override void Write(byte[] buffer, int offset, int count)
            {
                ValidateWrite(buffer, offset, count);

                ConsolePal.Write(_handle, buffer, offset, count);
            }