String vs string
No difference. System.String
is strictly identical to string
. Common C# coding guidelines indicates that you should use the keyword string
.
There is no difference. string (lower case) is just an alias for System.String.
No difference. System.String
is strictly identical to string
. Common C# coding guidelines indicates that you should use the keyword string
.
There is no difference. string (lower case) is just an alias for System.String.