Athar Ali
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
There's no difference.
The C# type 'string' is just an alias for the .NET type 'System.String'.
So, as long as you include the following using directive in your program:
using System;
then 'string' and 'String' can be used interchangeably.