NFe.Components.XMLIniFile.FullPathNode C# (CSharp) Method

FullPathNode() public method

public FullPathNode ( XmlNode node ) : string
node System.Xml.XmlNode
return string
		public string FullPathNode(XmlNode node)
		{
			string result = "";
			while (node.ParentNode!=null)
			{
				result = node.LocalName + "\\" + result;
				node = node.ParentNode;
			}
			return result;
		}