當前位置: 首頁>>代碼示例>>C#>>正文


C# Stream.ReadByte方法代碼示例

本文整理匯總了C#中System.Stream.ReadByte方法的典型用法代碼示例。如果您正苦於以下問題:C# Stream.ReadByte方法的具體用法?C# Stream.ReadByte怎麽用?C# Stream.ReadByte使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Stream的用法示例。


在下文中一共展示了Stream.ReadByte方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ReadByte

 public static byte ReadByte(Stream s)
 {
     int v = s.ReadByte();
     if (v == -1)
         throw new Exception("IOException: EOF");
     return (byte)v;
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:7,代碼來源:SE.cs

示例2: InternalReadByte

 public static int InternalReadByte(Stream s)
 {
     int v = s.ReadByte();
     if (v == -1)
         throw new Exception("IOException: EOF");
     return v;
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:7,代碼來源:SE.cs

示例3: ReadUInt32

 public static uint ReadUInt32(Stream s)
 {
     int a = s.ReadByte();
     int b = s.ReadByte();
     int c = s.ReadByte();
     int d = InternalReadByte(s);
     return (uint)((a << 24) | (b << 16) | (c << 8) | d);
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:8,代碼來源:SE.cs

示例4: ReadUInt16

 public static ushort ReadUInt16(Stream s)
 {
     int a = s.ReadByte();
     int b = InternalReadByte(s);
     return (ushort)((a << 8) | b);
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:6,代碼來源:SE.cs

示例5: ReadChar

 public static char ReadChar(Stream s)
 {
     int a = s.ReadByte();
     int b = InternalReadByte(s);
     return (char)((a << 8) | b);
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:6,代碼來源:SE.cs

示例6: ReadSByte

 public static sbyte ReadSByte(Stream s)
 {
     int v = s.ReadByte();
     return (sbyte)v;
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:5,代碼來源:SE.cs

示例7: InternalReadInt16

 private static int InternalReadInt16(Stream s)
 {
     int a = s.ReadByte();
     int b = InternalReadByte(s);
     return ((a << 8) | b);
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:6,代碼來源:SE.cs

示例8: ReadUtfChar

 private static int ReadUtfChar(Stream s, StringBuilder sb)
 {
     int a = InternalReadByte(s);
     if ((a & 0x80) == 0)
     {
         sb.Append((char)a);
         return 1;
     }
     if ((a & 0xe0) == 0xb0)
     {
         int b = InternalReadByte(s);
         sb.Append((char)(((a & 0x1F) << 6) | (b & 0x3F)));
         return 2;
     }
     if ((a & 0xf0) == 0xe0)
     {
         int b = s.ReadByte();
         int c = InternalReadByte(s);
         sb.Append((char)(((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F)));
         return 3;
     }
     throw new Exception("IOException: UTFDataFormat:");
 }
開發者ID:divyang4481,項目名稱:bclcontrib-scriptsharp,代碼行數:23,代碼來源:SE.cs


注:本文中的System.Stream.ReadByte方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。