Example #1
0
 public static IEnumerable <string> DumpTypeReferences(this MetadataReader reader)
 {
     return(reader.TypeReferences
            .Select(t => reader.GetTypeReference(t))
            .Select(t => $"{reader.GetString(t.Name)}, {reader.GetString(t.Namespace)}, {reader.Dump(t.ResolutionScope)}"));
 }