public void Values()
 {
     ExceptionAssert.Throws<InvalidOperationException>("Cannot access child value on Newtonsoft.Json.Linq.JValue.",
         () =>
         {
             JValue v = new JValue(true);
             v.Values<int>();
         });
 }
Exemple #2
0
 public void Values()
 {
     JValue v = new JValue(true);
       v.Values<int>();
 }