Praeclarum.Log.ShowError C# (CSharp) Метод

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

public static ShowError ( this obj, Exception ex, string format ) : void
obj this
ex System.Exception
format string
Результат void
		public static void ShowError (this Foundation.NSObject obj, Exception ex, string format, params string[] args)
		{
			var title = format;
			try {
				title = string.Format (format, args);
			} catch (Exception ex2) {
				Log.Error (ex2);
			}
			ShowError (obj, ex, title);
		}
		public static void ShowError (this Foundation.NSObject obj, Exception ex, string title = "")