Thursday, August 30, 2007

Declaring indexed properties in c#

// Default Indexed Property
public String this[String name] {
get {
return (String) lookuptable[name];
}
}

No comments: