print variable in c# code example
Example 1: how to print statement in c#
Debug.Log("This is C# programming"); //for Unity
Example 2: c# print
System.Console.WriteLine("this is how to print");
Example 3: how to print a variable in c#
using System;
namespace Simple
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("This is C#");
}
}
}