Question:What is the difference between data types "System.String" and "string" in C#?
A string is a value type, while System.String is a reference type.
B There is no difference,string is just an alias of the System.String data type.
C string variable is limited to storing alphabetic characters, while System.String does not have any limit.
D None of these.
+ AnswerB
+ Report