コード例 #1
0
 /// <summary>
 /// Get the error of the inspector.
 /// </summary>
 private string GetInspectorError(IInputInspector inspector)
 {
     if (inspector == null)
     {
         throw new ArgumentNullException(ERROR_INSPECTOR_IS_NULL);
     }
     return(inspector.GetError());
 }
 /// <summary>
 /// Get the error of the inspector.
 /// </summary>
 private string GetInspectorError(IInputInspector inspector)
 {
     return(inspector.GetError());
 }