|
|
@ -275,6 +275,8 @@ namespace ICSharpCode.Decompiler.IL.Transforms |
|
|
|
name = "array"; |
|
|
|
name = "array"; |
|
|
|
} else if (type is PointerType) { |
|
|
|
} else if (type is PointerType) { |
|
|
|
name = "ptr"; |
|
|
|
name = "ptr"; |
|
|
|
|
|
|
|
} else if (type.Kind == TypeKind.TypeParameter) { |
|
|
|
|
|
|
|
name = "val"; |
|
|
|
} else if (type.IsAnonymousType()) { |
|
|
|
} else if (type.IsAnonymousType()) { |
|
|
|
name = "anon"; |
|
|
|
name = "anon"; |
|
|
|
} else if (type.Name.EndsWith("Exception", StringComparison.Ordinal)) { |
|
|
|
} else if (type.Name.EndsWith("Exception", StringComparison.Ordinal)) { |
|
|
|