public void IBindingListRemoveSort()
 {
     AssertException.Throws<NotSupportedException>(() =>
     {
         IBindingList l = new JObject();
         l.RemoveSort();
     }, "Specified method is not supported.");
 }
Example #2
0
        public void IBindingListRemoveSort()
        {
            IBindingList l = new JObject();

            l.RemoveSort();
        }
 public void IBindingListRemoveSort()
 {
   IBindingList l = new JObject();
   l.RemoveSort();
 }