Exemple #1
0
 static void OnRtnError(object sender, ref ErrorField error)
 {
     Console.WriteLine("BB" + error.ErrorID + error.ErrorMsg());
 }
Exemple #2
0
 static void OnRtnError(object sender, ref ErrorField error)
 {
     Console.WriteLine("BB" + error.ErrorID + error.ErrorMsg());
 }
Exemple #3
0
 public static string ToFormattedString(this ErrorField field)
 {
     return(string.Format("[ErrorID={0},ErrorMsg={1}]",
                          field.ErrorID, field.ErrorMsg()));
 }