예제 #1
0
파일: Errors.cs 프로젝트: rudimk/dlr-dotnet
 /// <summary>
 /// ArgumentException with message like "Could not convert argument {0} for call to {1}."
 /// </summary>
 internal static Exception DispTypeMismatch(object p0, object p1)
 {
     return(new ArgumentException(Strings.DispTypeMismatch(p0, p1)));
 }