I'm very surprised after seeing that I actually have to Instantiate an Interface to use the Word Interoop in C#.
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
The Microsoft.Office.Interop.Word.Application
according to what its XML documentation says is an interface:
How is it possible, has visual studio confused it with something else? Or what allows this interface to be instantiated?