I'm working with some Interop code and need to instantiate an interface.
The equivalent in C# is:
Interop.SomeInterface theInterface;
theInterface = new Interop.SomeInterface();
theInterface.SomeEvent += new SomeEventHandler(...);
How can I accomplish instantiating this interface in F#? Do I need to re-wrap this interop dll into something that F# can make sense of?