What is the difference between String and string ?
Athar Ali
Select an image from your device to upload
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.