当前位置:编程学习 > C#/ASP.NET >>

C#中索引跟数组的比较

索引跟数组的比较

•       索引和数组的比较
       索引可以使用非整型参数
       索引可以被重载
       索引可以是私有的
       索引不能有ref/out 型参数
struct Matrix   www.zzzyk.com
{
    ...
    public double this [int row, int col]
    {  
        get { ... }
        set { ... }
    }
    public Row this [int row]
    {  
        get { ... }
        set { ... }
    }
    ...
}

 

作者:ershouyage
补充:软件开发 , C# ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,