public class Foo
{
    public static Foo Create()
    {
        return new Foo();
    }

    public void Bar()
    {
        return;
    }
}