我有一个界面 被这样使用:
var descr = new IMyInterface[3];
乍一看,我以为这没有任何意义,因为它看起来像一个界面正在被即时转换(这是不可能的 ) 。 因此我认为这可能是对界面中定义的索引器的呼唤,但我还是不太明白它是如何运作的。所以我的问题是:
- What is this call doing? Is it calling an indexer defined in the interface?
- What implementation of the interface s indexer is being used?
感谢您的帮助:)