|
|
|
@ -122,10 +122,10 @@ namespace ICSharpCode.ILSpy
@@ -122,10 +122,10 @@ namespace ICSharpCode.ILSpy
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public override string TypeToString(TypeReference t, bool includeNamespace, ICustomAttributeProvider attributeProvider = null) |
|
|
|
|
public override string TypeToString(TypeReference type, bool includeNamespace, ICustomAttributeProvider typeAttributes = null) |
|
|
|
|
{ |
|
|
|
|
PlainTextOutput output = new PlainTextOutput(); |
|
|
|
|
t.WriteTo(output, includeNamespace ? ILNameSyntax.TypeName : ILNameSyntax.ShortTypeName); |
|
|
|
|
type.WriteTo(output, includeNamespace ? ILNameSyntax.TypeName : ILNameSyntax.ShortTypeName); |
|
|
|
|
return output.ToString(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|