Data.XMLComparer.LoadXmlFile C# (CSharp) Method

LoadXmlFile() public method

public LoadXmlFile ( string path ) : bool
path string
return bool
        public bool LoadXmlFile(string path)
        {
            bool result = false;
            
            // check the file's existense
            if (!System.IO.File.Exists(path)) {
                
                return result;
                
            }
            
            // read the file data to memory
            
            return result;
        }