Einzelnen Beitrag anzeigen

Heffalump

Registriert seit: 3. Aug 2005
278 Beiträge
 
RAD-Studio 2009 Ent
 
#5

Re: 2 indexer im interface deklarieren. Wie?

  Alt 6. Mär 2006, 12:22
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?
  Mit Zitat antworten Zitat