コード例 #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: private System.Nullable<int> readNextInt(java.nio.channels.ReadableByteChannel channel) throws java.io.IOException
        private int?ReadNextInt(ReadableByteChannel channel)
        {
            return(IoPrimitiveUtils.readInt(channel, Buffer(4)));
        }