Castle.DynamicProxy.Builder.CodeGenerators.InterfaceProxyGenerator.Join C# (CSharp) 메소드

Join() 보호된 메소드

protected Join ( Type interfaces, Type mixinInterfaces ) : System.Type[]
interfaces System.Type
mixinInterfaces System.Type
리턴 System.Type[]
		protected Type[] Join(Type[] interfaces, Type[] mixinInterfaces)
		{
			Type[] union = new Type[interfaces.Length + mixinInterfaces.Length];
			Array.Copy(interfaces, 0, union, 0, interfaces.Length);
			Array.Copy(mixinInterfaces, 0, union, interfaces.Length, mixinInterfaces.Length);
			return union;
		}