예제 #1
0
파일: JToken.cs 프로젝트: djdeathgirl/Jabbo
        /// <summary>
        /// Removes this token from its parent.
        /// </summary>
        public void Remove()
        {
            if (_parent == null)
            {
                throw new InvalidOperationException("The parent is missing.");
            }

            _parent.Remove(this);
        }