本文整理匯總了C#中System.IO.WriteByte方法的典型用法代碼示例。如果您正苦於以下問題:C# IO.WriteByte方法的具體用法?C# IO.WriteByte怎麽用?C# IO.WriteByte使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.IO
的用法示例。
在下文中一共展示了IO.WriteByte方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Save
public void Save(sio.FileStream fs)
{
misc.WriteStruct(fs, hdr);
fs.WriteString(name.ToUpper());
if (!isDirectory)
fs.WriteString(";1");
if ((fs.Position & 1) == 1)
fs.WriteByte(0);
}
示例2: SaveM
public void SaveM(sio.FileStream fs)
{
sio.BinaryWriter bw;
bw = new sio.BinaryWriter(fs);
hdr.parDirNum++;
fs.WriteByte(hdr.lenDirId);
fs.WriteByte(hdr.exAttrRecLen);
bw.Write(hdr.locExtent.ChangeEndian());
bw.Write(hdr.parDirNum.ChangeEndian());
hdr.parDirNum--;
fs.WriteString(name);
if ((fs.Position & 1) == 1)
fs.WriteByte(0);
}
示例3: b64_from_24bit
private static void b64_from_24bit(byte b2, byte b1, byte b0, int n, IO.MemoryStream finalResult)
{
const string b64t = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
int w = ((b2) << 16) | ((b1) << 8) | (b0);
while (n-- > 0)
{
finalResult.WriteByte((byte)b64t[w & 0x3f]);
w >>= 6;
}
}