using System.Collections.Generic;
private static readonly IEnumerable<Something> Somethings = new Something[] { new Something{Name = "blah", Description= "some description"}};
public static void Main()
Console.WriteLine("Hello, world!");
var mySomething = Somethings.FirstOrDefault(x => x.Name == "blah");
Console.WriteLine(mySomething.Name);
Console.WriteLine(ex.Message);
public string Name {get;set;}
public string Description {get;set;}
public string DoStuff() {