当前位置: 首页>>代码示例>>C#>>正文


C# Delegate.CombineImpl方法代码示例

本文整理汇总了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);
        }
开发者ID:afrog33k,项目名称:csnative,代码行数:7,代码来源:Delegate.cs

示例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);
        }
开发者ID:memsom,项目名称:dotNetAnywhere-wb,代码行数:14,代码来源:Delegate.cs

示例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);
        }
开发者ID:nlh774,项目名称:DotNetReferenceSource,代码行数:7,代码来源:Delegate.cs

示例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);
		}
开发者ID:KonajuGames,项目名称:SharpLang,代码行数:19,代码来源:Delegate.cs

示例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);
        }
开发者ID:pgavlin,项目名称:corert,代码行数:9,代码来源:Delegate.cs

示例6: Combine

		public static Delegate Combine(Delegate a, Delegate b)
		{
			if (a == null)
			{
				return b;
			}
			return a.CombineImpl(b);
		}
开发者ID:ChristianWulf,项目名称:CSharpKDMDiscoverer,代码行数:8,代码来源:Delegate.cs

示例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);
		}
开发者ID:Bewolf2,项目名称:GenesisMono,代码行数:19,代码来源:Delegate.cs

示例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);
 }
开发者ID:ArildF,项目名称:masters,代码行数:18,代码来源:delegate.cs

示例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);
 }
开发者ID:gbarnett,项目名称:shared-source-cli-2.0,代码行数:14,代码来源:delegate.cs


注:本文中的System.Delegate.CombineImpl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。