Chris Whiteley

Personal blog of a London based software engineer.

profile.cs
public class EngineerProfile
{
  public string Name { get; set; } = "Chris Whiteley";
  public string PrimaryStack { get; set; } = ".NET / C#";
  public string[] Interests { get; set; } =
    new[]
    {
      "Artificial Intelligence",
      "Personal Projects",
      ".NET"
    };
}