set string variable c# code example
Example 1: how to declare a string c#
string MyString = "Your string in here";
Example 2: how to create a variable in C#
int variable;
string MyString = "Your string in here";
int variable;