On Tue, 29 Jun 2010 09:21:34 -0400, BLS <[email protected]> wrote:

Hi, in C# you can do some thing like this.

public interface IDataErrorInfo
{
     // INDEXER 
     string this[string columnName] { get; }
   }
}

how to translate this into D2 ?
thanks in advance, bjoern

string opIndex(string columnName);

Reply via email to