本文介绍了为什么我们不能将索引器产生的值作为ref或out参数传递给方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用索引器有两个重要限制.首先,因为索引器会执行
未定义存储位置,索引器产生的值不能作为ref或
传递方法的out参数.其次,索引器必须是其类的实例成员.它
无法声明为静态.

1.为什么我们不能将索引器产生的值作为ref或out参数传递给方法?

2.为什么索引器不能是静态的?

There are two important restrictions to using indexers. First,because an indexer does
not define a storage location, a value produced by an indexer cannot be passed as a ref or
out parameter to a method. Second, an indexer must be an instance member of its class; it
cannot be declared static.

1. why we can''t pass produced value by indexer as ref or out parameter to an method?

2. why indexers can not be static?

推荐答案


这篇关于为什么我们不能将索引器产生的值作为ref或out参数传递给方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 17:45