ApiParser.TypeResolver.GetSpecialName C# (CSharp) Method

GetSpecialName() private method

private GetSpecialName ( [ type ) : string
type [
return string
        private static string GetSpecialName([NotNull] Type type)
        {
            var compiler = new CSharpCodeProvider();
            var typeRef = new CodeTypeReference(type);
            return compiler.GetTypeOutput(typeRef);
        }
    }