System.Configuration.ConfigurationErrorsException.FullPathWithAssert C# (CSharp) 메소드

FullPathWithAssert() 개인적인 메소드

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

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

            return fullPath;
        }