NRConfigManager.Rendering.Renderer.GetMatchFromType C# (CSharp) Method

GetMatchFromType() private static method

private static GetMatchFromType ( ITypeDetails t ) : Match
t ITypeDetails
return Match
        private static Match GetMatchFromType(ITypeDetails t)
        {
            var assy = t.Assembly.Name;
            var className = t.FullName;

            return new Match(assy, className);
        }