In reference code NDP/clr/src/BCL/System/Char.cs
:
public struct Char : IComparable, IConvertible
{
//
// Member Variables
//
internal char m_value;
But isn't char
an alias of System.Char
? I'm confused.
In reference code NDP/clr/src/BCL/System/Char.cs
:
public struct Char : IComparable, IConvertible
{
//
// Member Variables
//
internal char m_value;
But isn't char
an alias of System.Char
? I'm confused.
char
is a C# type that matches the .NET type System.Char
.
See a list of built-in C# types and their corresponding .NET types: https://msdn.microsoft.com/en-us/library/ya5y69ds.aspx