Copied from TFS task 150409 We should be able to write something along these lines ``` powershell interface IFoo { [string] foo(); } class Foo : IFoo { [string] foo() { return 'foo' } } ```