Xunit.Reporting.Internal.Assembly.Assembly C# (CSharp) Method

Assembly() public method

Creates a new instance of the Assembly class.
public Assembly ( System assembly ) : System
assembly System /// Specifies the which is wrapped. ///
return System
        public Assembly(System.Reflection.Assembly assembly)
        {
            Guard.AgainstArgumentNull(assembly, "assembly");

            this._assembly = assembly;
        }