Example #1
0
 public void Populate <T>(T item) where T : class
 {
     JSON.Populate(this, item);
 }
Example #2
0
 // ReSharper disable once InconsistentNaming
 // ReSharper disable once UnusedMember.Global
 public string ToJSON()
 {
     return(JSON.Dump(this));
 }
Example #3
0
 // ReSharper disable once UnusedMember.Global
 public void Make <T>(out T item)
 {
     JSON.MakeInto(this, out item);
 }