예제 #1
0
        internal override bool DeepEquals(JToken node)
        {
            JObject t = node as JObject;

            return(t != null && ContentsEqual(t));
        }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="JObject"/> class from another <see cref="JObject"/> object.
 /// </summary>
 /// <param name="other">A <see cref="JObject"/> object to copy from.</param>
 public JObject(JObject other)
     : base(other)
 {
 }