VAGSuite.ctrlReleaseNotes.GetExceptionType C# (CSharp) Метод

GetExceptionType() публичный статический Метод

public static GetExceptionType ( Exception ex ) : string
ex System.Exception
Результат string
        public static string GetExceptionType(Exception ex)
        {
            string exceptionType = ex.GetType().ToString();
            return exceptionType.Substring(
                exceptionType.LastIndexOf('.') + 1);
        }