program to pring inserted string in c# code example
Example 1: how to show the value of a string in c#
using System;
string aText = "This is my text!";
Console.WriteLine(aText);
Example 2: /* String type demo program */
using namespace std;
using System;
string aText = "This is my text!";
Console.WriteLine(aText);
using namespace std;