Esempio n. 1
0
        private bool IsOK(string fileName, object[] args, out string[] fnames)
        {
            fnames = null;
            string extName = Path.GetExtension(fileName).ToUpper();

            if (extName != ".XML")
            {
                return(false);
            }
            if (HJXML.Read(fileName, out fnames))
            {
                return(true);
            }
            return(false);
        }