Beispiel #1
0
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n, Func<IPropertyPage, IPropertyPage, Action<string, string>, bool> checkitem, Action<string, string> errAct)
 {
     return Compare<IPropertyPage>(source,n,checkitem,errAct);
 }
Beispiel #2
0
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n, Func<IPropertyPage, IPropertyPage, bool> checkitem)
 {
     return Compare<IPropertyPage>(source,n,checkitem);
 }
Beispiel #3
0
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n)
 {
     return Compare<IPropertyPage>(source,n);
 }
Beispiel #4
0
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n, Func <IPropertyPage, IPropertyPage, Action <string, string>, bool> checkitem, Action <string, string> errAct)
 {
     return(Compare <IPropertyPage>(source, n, checkitem, errAct));
 }
Beispiel #5
0
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n, Func <IPropertyPage, IPropertyPage, bool> checkitem)
 {
     return(Compare <IPropertyPage>(source, n, checkitem));
 }
Beispiel #6
0
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n)
 {
     return(Compare <IPropertyPage>(source, n));
 }