internal override bool DeepEquals(JToken node) { JConstructor c = node as JConstructor; return(c != null && _name == c.Name && ContentsEqual(c)); }
/// <summary> /// Initializes a new instance of the <see cref="JConstructor"/> class from another <see cref="JConstructor"/> object. /// </summary> /// <param name="other">A <see cref="JConstructor"/> object to copy from.</param> public JConstructor(JConstructor other) : base(other) { _name = other.Name; }