Ejemplo n.º 1
0
 public static int Write(this VFile source, bool value) => source.Write((byte *)&value, sizeof(bool));
Ejemplo n.º 2
0
 public static int Write(this VFile source, ushort value) => source.Write((byte *)&value, sizeof(ushort));
Ejemplo n.º 3
0
 public static int Write(this VFile source, ulong value) => source.Write((byte *)&value, sizeof(ulong));
Ejemplo n.º 4
0
 public static int Write(this VFile source, float value) => source.Write((byte *)&value, sizeof(float));
Ejemplo n.º 5
0
 public static int WriteASCII(this VFile source, string value, int length) => source.Write(Encoding.ASCII.GetBytes(value), value.Length);