public TypeDefinition GetType(string fullname)
        {
            string @namespace, name;

            TypeParser.SplitFullName(fullname, out @namespace, out name);

            return(GetType(@namespace, name));
        }