So funktioniert es mit Delphi.NET (Winform)
Delphi-Quellcode:
IMiep = interface
function get_Index1(index: integer): string;
function get_Index2(index: integer): string;
property Index1[index: integer]: string read get_Index1;
property Index2[index: integer]: string read get_Index2;
end;
Wie kann man das Beispiel in C# darstellen?