Binboo.Core.Events.ErrorEventArgs.ErrorEventArgs C# (CSharp) Метод

ErrorEventArgs() публичный Метод

public ErrorEventArgs ( string msg, string details ) : System
msg string
details string
Результат System
        public ErrorEventArgs(string msg, string details)
        {
            _message = msg;
            _details = details;
        }
ErrorEventArgs