c# - String or string -
possible duplicate:
in c# difference between string , string
what's difference between string , string. in c#, preferred?
actually string
alias system.string
erash right...
here list of other alias' shamelessly lifted jon skeet in this post:
* object: system.object * string: system.string * bool: system.boolean * byte: system.byte * sbyte: system.sbyte * short: system.int16 * ushort: system.uint16 * int: system.int32 * uint: system.uint32 * long: system.int64 * ulong: system.uint64 * float: system.single * double: system.double * decimal: system.decimal * char: system.char
Comments
Post a Comment