dotgnu.xml.XmlNode.GetPreviousSibling C# (CSharp) Method

GetPreviousSibling() public method

public GetPreviousSibling ( ) : XmlNode
return XmlNode
        public virtual XmlNode GetPreviousSibling()
        {
            IntPtr retval=Native._xmlNodeGetPrevSibling(dataPtr);
            // actually I should use the this.DeSerialize() ,
            // but what the heck, this is only FUN !
            if(retval==IntPtr.Zero)
            {
            return null;
            }
            return XmlNodeFactory.NewNode(retval);
        }