The System.Type.Name property in C# is used to retrieve the simple name of a type. This property provides the name of the type without any namespace information or generic type parameters. It is a read-only property that belongs to the System.Type class and can be accessed using the dot notation after an object of the Type class. This property is useful in scenarios where you only need to retrieve the simple name of a type, disregarding any additional information.
C# (CSharp) System Type.Name - 17 examples found. These are the top rated real world C# (CSharp) examples of System.Type.Name extracted from open source projects. You can rate examples to help us improve the quality of examples.