gpt4 book ai didi

c# - 如何使用属性将私有(private)数组公开为只读?

转载 作者:太空宇宙 更新时间:2023-11-03 19:29:34 26 4
gpt4 key购买 nike

<分区>

下面的代码是做什么的?

class MyClass {
private int[] myPrivates;
public int[] GetMyPrivates
{
get { return myPrivates; }
}

protected int[] SetMyPrivates
{
set { myPrivates = value; }
}
}

是否有更好的方法来保护数组 myPrivates?是否可以使其只读?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com