Example #1
0
 public void Add <T>(T item)
 {
     // The GetSetName<T> method seems to get the correct type?
     // Then it adds the object
     _ctx.AddObject(GetSetName <T>(), item);
 }