Skip to content

Instantly share code, notes, and snippets.

@airbreather
Created February 27, 2015 19:25
Show Gist options
  • Save airbreather/676c90adedaf3cab844d to your computer and use it in GitHub Desktop.
Save airbreather/676c90adedaf3cab844d to your computer and use it in GitHub Desktop.
using System;
namespace ConsoleApplication
{
internal static class Program
{
private static void Main()
{
string nullString = null;
Console.WriteLine(nullString + "hello hello hello");
// outputs "hello hello hello"
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment