[Ironruby-core] overriding indexers
Ivan Porto Carrero
ivan at flanders.co.nz
Thu May 28 13:49:07 EDT 2009
Hi
How do I override an indexer on a C# class?
public class IndexerContained{
private Dictionary<string, string> _inner = new Dictionary<string,
string>{
{ "key1", "value1" },
{ "key2", "value2" },
{ "key3", "value3" },
{ "key4", "value4" }
};
public virtual string this[string name]{
get { return _inner[name]; }
set { _inner[name] = value; }
}
}
I would like to override that indexer with something like
class IndexerContainedMock
def [](*args)
5
end
def []=(*args)
# nothing here
end
end
Am I doing it wrong or is that not implemented yet?
---
Met vriendelijke groeten - Best regards - Salutations
Ivan Porto Carrero
GSM: +32.486.787.582
Blog: http://flanders.co.nz
Twitter: http://twitter.com/casualjim
Author of IronRuby in Action (http://manning.com/carrero)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20090528/53aebf52/attachment.html>
More information about the Ironruby-core
mailing list