示例#1
0
        public TypeDefinition GetType(string fullname)
        {
            TypeParser.SplitFullName(fullname, out string @namespace, out string name);

            return(GetType(@namespace, name));
        }
示例#2
0
 public TypeReference GetType(string fullName, bool runtimeName)
 {
     return(runtimeName
         ? TypeParser.ParseType(this, fullName, typeDefinitionOnly: true)
         : GetType(fullName));
 }