Cilador.Fody.InterfaceMixins.InterfaceMixinAttribute.InterfaceMixinAttribute C# (CSharp) Method

InterfaceMixinAttribute() public method

Creates a new InterfaceMixinAttribute.
public InterfaceMixinAttribute ( Type @interface ) : System
@interface System.Type
return System
        public InterfaceMixinAttribute(Type @interface)
        {
            Contract.Requires(@interface != null);
            this.Interface = @interface;
        }
InterfaceMixinAttribute