public static string GetDescription(CCErrorSource aErrSrc)
		{
			return _descr[(int)aErrSrc];
		}
Exemplo n.º 2
0
 /// <summary>Retrieves the description of the error.</summary>
 /// <param name="aErrSrc">The error source.</param>
 public static string GetDescription(CCErrorSource aErrSrc)
 {
     return(_descr[(int)aErrSrc]);
 }
		public static string GetCode(CCErrorSource aErrSrc)
		{
			return _codes[(int)aErrSrc];
		}
Exemplo n.º 4
0
 /// <summary>Retrieves the code of the error.</summary>
 /// <param name="aErrSrc">The error source.</param>
 public static string GetCode(CCErrorSource aErrSrc)
 {
     return(_codes[(int)aErrSrc]);
 }