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;
        }