Exemplo n.º 1
0
 public static void DeserializeTo <T>(this ITextFormatter textFormatter, TextReader textReader, T obj)
 {
     textFormatter.DeserializeTo(textReader, RWHelper.CreateWriter(obj));
 }
Exemplo n.º 2
0
 public static void DeserializeTo <T>(this ITextFormatter textFormatter, HGlobalCache <char> hGCache, T obj)
 {
     textFormatter.DeserializeTo(hGCache, RWHelper.CreateWriter(obj));
 }
Exemplo n.º 3
0
 public static void DeserializeTo <T>(this ITextFormatter textFormatter, ReadOnlySpan <char> text, T obj)
 {
     textFormatter.DeserializeTo(text, RWHelper.CreateWriter(obj));
 }