Ejemplo n.º 1
0
 public void IBindingListAddNew()
 {
   ExceptionAssert.Throws<JsonException>(
     "Could not determine new value to add to 'Newtonsoft.Json.Linq.JObject'.",
     () =>
     {
       IBindingList l = new JObject();
       l.AddNew();
     });
 }
Ejemplo n.º 2
0
 public void IBindingListAddNew()
 {
   IBindingList l = new JObject();
   l.AddNew();
 }