Exemplo n.º 1
0
 public static void DeserializePointFNullableCollection(BufferedTextReader sr, int nextToken, ICollection <PointF?> res)
 {
     JsonSerialization.DeserializeNullableStructCollection(sr, nextToken, next => DeserializePointF(sr, next), res);
 }
Exemplo n.º 2
0
 public static List <PointF?> DeserializePointFNullableCollection(BufferedTextReader sr, int nextToken)
 {
     return(JsonSerialization.DeserializeNullableStructCollection(sr, nextToken, next => DeserializePointF(sr, next)));
 }