本文介绍了VAR在C#中 - 为什么不能将其作为一个成员变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么不能在C#中的类级时,这些变量将立即分配给具有隐式类型的变量?
Why is it not possible to have implicitly-typed variables at a class level within C# for when these variables are immediately assigned?
例如:
public class TheClass
{
private var aList = new List<string>();
}
难道尚未实施或有一个概念/技术原因,为什么没有这样做?
Is it just something that hasn't been implemented or is there a conceptual/technical reason for why it hasn't been done?
推荐答案
的,解释的理由。
这篇关于VAR在C#中 - 为什么不能将其作为一个成员变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!