
what is the difference between this types: char and System.Char
Vitalie, correction on the last lines of my post, as Nicholas and Peter
poitned out, char is just a mapping to System.Char, they both have the same
static and instance methods exposed.
--
Greg Ewing [MVP]
http://www.claritycon.com/
Quote:
> Vitalie, char is a simple data type whereas System.Char is a structure
> which represents a unicode character. The System.Char structure also
> exposes some helpful functions for comparing and checking the value of the
> contained char whereas the char type does not have these.
> --
> Greg Ewing [MVP]
> http://www.claritycon.com/
> > Hi !
> > what is the difference between this types: char and System.Char
> > thanks !