6 lines
156 B
C#
6 lines
156 B
C#
namespace LitJson
|
|
{
|
|
internal delegate void ExporterFunc(object obj, JsonWriter writer);
|
|
public delegate void ExporterFunc<T>(T obj, JsonWriter writer);
|
|
}
|