c# ?

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.
*/using System;
using System.Drawing;

public class Example
{
    public static Image img;

    public static void Main()
    {
        img = Image.FromFile("Image.png");
    }
}
using System;
using System.Windows.Forms;

class Program
{
    static void Main()
    {
        MessageBox.Show("Hello, World!");
        Console.WriteLine("Is almost the same argument!");
    }
}
/*
	A nullable value type T? represents all values of its underlying
    value type T and an additional null value. For example, you can 
    assign any of the following three values to a bool? variable: 
    true, false, or null.
*/

double? pi = 3.14;
char? letter = 'a';

int m2 = 10;
int? m = m2;

bool? flag = null;
Source

Also in C#: