void ExporterFunc`1(T obj, JsonWriter writer)_.cs 108 B

123456
  1. using System;
  2. namespace LitJson
  3. {
  4. public delegate void ExporterFunc<T>(T obj, JsonWriter writer);
  5. }