Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
added 4 characters in body
Source Link
Vishal Suthar

String (System.StringSystem.String) is a class in the base class library. string (lower case) is a reserved work in C# that is an alias for System.String. Int32 vs int is a similar situation as is Boolean vs. boolBoolean vs. bool. These C# language specific keywords enable you to declare primitives in a style similar to C.

String (System.String) is a class in the base class library. string (lower case) is a reserved work in C# that is an alias for System.String. Int32 vs int is a similar situation as is Boolean vs. bool. These C# language specific keywords enable you to declare primitives in a style similar to C.

String (System.String) is a class in the base class library. string (lower case) is a reserved work in C# that is an alias for System.String. Int32 vs int is a similar situation as is Boolean vs. bool. These C# language specific keywords enable you to declare primitives in a style similar to C.

Post Made Community Wiki by Inverted Llama
Post Merged (destination) from stackoverflow.com/questions/8865987/…
Source Link
Joe Alfano

String (System.String) is a class in the base class library. string (lower case) is a reserved work in C# that is an alias for System.String. Int32 vs int is a similar situation as is Boolean vs. bool. These C# language specific keywords enable you to declare primitives in a style similar to C.

lang-cs