Skip to content

Instantly share code, notes, and snippets.

@stofte
Created May 7, 2015 14:48
Show Gist options
  • Save stofte/6e466caf5def4fe13bcd to your computer and use it in GitHub Desktop.
Save stofte/6e466caf5def4fe13bcd to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication
{
class Foo
{
public Bar Bar { get; set; }
}
class Bar
{
public int Baz { get; set; }
}
class Program
{
static void Main(string[] args)
{
var x = new Foo
{
Bar =
{
Baz = 42
}
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment