AsmResolver.Tests.Net.TypeNameParserTests.PointerType C# (CSharp) Method

PointerType() private method

private PointerType ( ) : void
return void
        public void PointerType()
        {
            var type = typeof(string).MakePointerType();
            var typeReference = TypeNameParser.ParseType(null, type.AssemblyQualifiedName);
            Utilities.ValidateType(type, typeReference);
        }