将类型编码为 var
if (radioButton1.Checked) {
var Enc = Encoding.Unicode;
}
var text = File.ReadAllText(filePath, (Enc);
它不起作用,有任何方法可以使编码类型成为 var,这样我以后就可以 p
if (radioButton1.Checked) {
var Enc = Encoding.Unicode;
}
var text = File.ReadAllText(filePath, (Enc);
It doesn't work, any way to make the encoding type a var so I can later p
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题不在于使用
var
- 而是您在块内声明了变量,然后尝试在块外部使用它。这是一个替代方案:
The problem isn't using
var
- it's that you've declared the variable inside a block, and then you're trying to use it outside the block.Here's an alternative:
问题是,当您使用 var 声明变量时,必须赋值,以便可以推断类型(而且您仅在 if 条件范围内指定了
Enc
,因此无法使用它然后):The problem is that you must assign a value when you declare a variable with var so the type can be inferred (also you did specify
Enc
only within the scope of the if condition so it couldn't be used afterwards):