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

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -