Ejemplo n.º 1
0
 public static void PackBy(this Stream?stream, Type type, object?value) =>
 ZeroFormatterHelper.Pack(type, value, stream);
Ejemplo n.º 2
0
 public static void PackTo(this object?value, Type type, Stream?stream) =>
 ZeroFormatterHelper.Pack(type, value, stream);
Ejemplo n.º 3
0
 public static void PackBy <TValue>(this Stream?stream, TValue?value) =>
 ZeroFormatterHelper.Pack(value, stream);
Ejemplo n.º 4
0
 public static void PackTo <TValue>(this TValue?value, Stream?stream) =>
 ZeroFormatterHelper.Pack(value, stream);