Bitte erläutern Sie, warum ich die Benutzeroberfläche "Anwendung" in Excel VSTO instanziieren kann
Ich habe den folgenden C # -Code in meiner Anwendung, der einwandfrei funktioniert. Es wird eine neue Instanz von Excel gestartet.
private readonly Microsoft.Office.Interop.Excel.Application _application;
_application = new Microsoft.Office.Interop.Excel.Application();
_application.Visible = true;
Das ist mir erst kürzlich aufgefallenAnwendung ist ein Schnittstellentyp. Was genau ist los und wie ist das möglich?