gpt4 book ai didi

c# - 将变量转换为常量

转载 作者:行者123 更新时间:2023-11-30 14:55:09 29 4
gpt4 key购买 nike

Can 似乎很奇怪,但是有没有办法声明或转换变量为常量,例如:

string myVariable = "MyString";
const string myConstant = myVariable ;

我需要这个来回答我的问题: linq to sql startwith performance indexed columns

谢谢

最佳答案

没有办法为 Const 执行此操作 Const 值在编译时直接写入调用站点,相反,您可以将其设为 readonly 并分配它在构造函数中

有点像

string myVariable = "MyString";
readonly string myConstant="test" ;
public MyClass()
{
myConstant= myVariable ;
}

关于c# - 将变量转换为常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25938050/

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