C# type name instead of CLR type name

2020-03-26 03:31发布

typeof(int).Name

Will return System.Int32 does anyone know of a way to return "int"

3条回答
等我变得足够好
2楼-- · 2020-03-26 04:20

Yeah, you could write a mapping function. That is just an alias anyway.

Here is a list:

http://msdn.microsoft.com/en-us/library/86792hfa(VS.71).aspx

查看更多
做个烂人
3楼-- · 2020-03-26 04:20

Using reflection, you can use CSharpCodeProvider (exists in .NET Core 2 as well) to get "int", "string", etc. instead of the full CLR Type names.

There are other SO posts that give code examples for this:

How can I get the primitive name of a type in C#?

C# - Get user-friendly name of simple types through reflection?

Alternatively, you will have to map these Types yourself. There are a few libraries to do this for you if you don't mind third party libraries. Don't forget nullable variations.

查看更多
家丑人穷心不美
4楼-- · 2020-03-26 04:32

There aren't many types that are C# keywords (int, double, string) ... so perhaps you can write your own mapping function, from the System type name to the corresonding C# keyword.

查看更多
登录 后发表回答