c# reference code example
Example 1: c#
/* Answer to: "c#" */
/*
C# is a general-purpose, multi-paradigm programming language
encompassing strong typing, lexically scoped, imperative,
declarative, functional, generic, object-oriented, and
component-oriented programming disciplines.
*/
Example 2: c#
/* A C# (C-sharp ex.) */
using System;
namespace helloWorld
{
class Program
{
static void Main()
{
Console.WriteLine("What's your age?")
string age = Console.ReadLine()
Console.WriteLine($"You are {age} years old!")
}
}
}