Ejemplo n.º 1
0
 public static void WriteStruct <T>(this BinaryWriter reader, T input) where T : unmanaged => StructOP <T> .Write(input, reader);
Ejemplo n.º 2
0
 public static T ReadStruct <T>(this BinaryReader reader) where T : unmanaged => StructOP <T> .Read(reader);