3 overrides of Suffix
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\Types\RoArrayType.cs (1)
33
protected sealed override string
Suffix
=> Helpers.ComputeArraySuffix(_rank, _multiDim);
System\Reflection\TypeLoading\Types\RoByRefType.cs (1)
30
protected sealed override string
Suffix
=> "&";
System\Reflection\TypeLoading\Types\RoPointerType.cs (1)
30
protected sealed override string
Suffix
=> "*";
3 references to Suffix
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\Types\RoHasElementType.cs (3)
39
protected sealed override string ComputeName() => _elementType.Name +
Suffix
;
44
return fullName == null ? null : fullName +
Suffix
;
49
public sealed override string ToString() => _elementType.ToString() +
Suffix
;