本文整理汇总了C#中System.Stream.WriteByte方法的典型用法代码示例。如果您正苦于以下问题:C# Stream.WriteByte方法的具体用法?C# Stream.WriteByte怎么用?C# Stream.WriteByte使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Stream
的用法示例。
在下文中一共展示了Stream.WriteByte方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteUInt16
public static void WriteUInt16(Stream s, ushort v)
{
s.WriteByte((byte)(v >> 8));
s.WriteByte((byte)v);
}
示例2: WriteUInt32
public static void WriteUInt32(Stream s, uint v)
{
s.WriteByte((byte)(v >> 24));
s.WriteByte((byte)(v >> 16));
s.WriteByte((byte)(v >> 8));
s.WriteByte((byte)v);
}
示例3: WriteChar
public static void WriteChar(Stream s, char v)
{
s.WriteByte((byte)(v >> 8));
s.WriteByte((byte)v);
}
示例4: WriteBoolean
public static void WriteBoolean(Stream s, bool v)
{
s.WriteByte((byte)(v ? 1 : 0));
}
示例5: WriteBytes
public static void WriteBytes(Stream s, string v)
{
int length = v.Length;
for (int index = 0; index < length; index++)
#if CODE_ANALYSIS
s.WriteByte(v.CharAt(index) & 0xff);
#else
s.WriteByte((byte)(v[index] & 0xff));
#endif
}
示例6: WriteSByte
public static void WriteSByte(Stream s, sbyte v)
{
s.WriteByte((byte)v);
}
示例7: WriteByte
//public static int SkipBytes(Stream s, int n)
//{
// // note: This is actually a valid implementation of this method, rendering it quite useless...
// return 0;
//}
#endregion
#region Write
public static void WriteByte(Stream s, byte v)
{
s.WriteByte(v);
}