System.Configuration.ConfigurationException.FullPathWithAssert C# (CSharp) Method

FullPathWithAssert() private method

private FullPathWithAssert ( string filename ) : string
filename string
return string
        private static string FullPathWithAssert(string filename) {
            string fullPath = null;

            try {
                fullPath = Path.GetFullPath(filename);
            }
            catch {
            }

            return fullPath;
        }