internal override bool DeepEquals(JToken node) { JObject t = node as JObject; return(t != null && ContentsEqual(t)); }
/// <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) { }