本文整理汇总了C#中System.Delegate.CombineImpl方法的典型用法代码示例。如果您正苦于以下问题:C# Delegate.CombineImpl方法的具体用法?C# Delegate.CombineImpl怎么用?C# Delegate.CombineImpl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Delegate
的用法示例。
在下文中一共展示了Delegate.CombineImpl方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Combine
public static Delegate Combine(Delegate a, Delegate b)
{
if ((Object)a == null)
return b;
return a.CombineImpl(b);
}
示例2: Combine
public static Delegate Combine(Delegate a, Delegate b)
{
if (a == null) {
return b;
} else if (b == null) {
return a;
}
if (a.GetType() != b.GetType()) {
throw new ArgumentException("Incompatible delegate types");
}
return a.CombineImpl(b);
}
示例3: Combine
public static Delegate Combine(Delegate a, Delegate b)
{
if ((Object)a == null) // cast to object for a more efficient test
return b;
return a.CombineImpl(b);
}
示例4: Combine
/// <symmary>
/// Returns a new MulticastDelegate holding the
/// concatenated invocation lists of MulticastDelegates a and b
/// </symmary>
public static Delegate Combine (Delegate a, Delegate b)
{
if (a == null) {
if (b == null)
return null;
return b;
} else
if (b == null)
return a;
if (a.GetType () != b.GetType ())
throw new ArgumentException (Locale.GetText ("Incompatible Delegate Types. First is {0} second is {1}.", a.GetType ().FullName, b.GetType ().FullName));
return a.CombineImpl (b);
}
示例5: Combine
public unsafe static Delegate Combine(Delegate a, Delegate b)
{
if (a == null)
return b;
if (b == null)
return a;
return a.CombineImpl(b);
}
示例6: Combine
public static Delegate Combine(Delegate a, Delegate b)
{
if (a == null)
{
return b;
}
return a.CombineImpl(b);
}
示例7: Combine
/// <symmary>
/// Returns a new MulticastDelegate holding the
/// concatenated invocation lists of MulticastDelegates a and b
/// </symmary>
public static Delegate Combine (Delegate a, Delegate b)
{
if (a == null) {
if (b == null)
return null;
return b;
} else
if (b == null)
return a;
if (a.GetType () != b.GetType ())
throw new ArgumentException (Locale.GetText ("Incompatible Delegate Types."));
return a.CombineImpl (b);
}
示例8: Combine
// Combine creates a new delegate based upon the contents of the
// delegates passed in.
/// <include file='doc\Delegate.uex' path='docs/doc[@for="Delegate.Combine"]/*' />
public static Delegate Combine(Delegate a, Delegate b)
{
// boundry conditions -- if either (or both) delegates is null
// return the other.
if (a == null)
return b;
if (b == null)
return a;
// Verify that the types are the same...
if (a.GetType() != b.GetType())
throw new ArgumentException(Environment.GetResourceString("Arg_DlgtTypeMis"));
return a.CombineImpl(b);
}
示例9: Combine
public static Delegate Combine(Delegate a, Delegate b)
{
// boundry conditions -- if either (or both) delegates is null
// return the other.
if ((Object)a == null) // cast to object for a more efficient test
return b;
if ((Object)b == null) // cast to object for a more efficient test
return a;
if (!InternalEqualTypes(a, b))
throw new ArgumentException(Environment.GetResourceString("Arg_DlgtTypeMis"));
return a.CombineImpl(b);
}