コード例 #1
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 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);
 }
コード例 #2
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n, Func<IPropertyPage, IPropertyPage, bool> checkitem)
 {
     return Compare<IPropertyPage>(source,n,checkitem);
 }
コード例 #3
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n)
 {
     return Compare<IPropertyPage>(source,n);
 }
コード例 #4
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 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));
 }
コード例 #5
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n, Func <IPropertyPage, IPropertyPage, bool> checkitem)
 {
     return(Compare <IPropertyPage>(source, n, checkitem));
 }
コード例 #6
0
ファイル: ExtnGen.cs プロジェクト: ScottWeinstein/ILUnMerge
 public static bool Compare(this IPropertyPageCollection source, IPropertyPageCollection n)
 {
     return(Compare <IPropertyPage>(source, n));
 }