Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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

share|improve this question
1  
( count: 3, ) count: 2, try again – Daniel DiPaolo Mar 24 '11 at 20:52
The problem is that your code doesn't work. You have to fix it in order for it to work. – Josh Stodola Mar 24 '11 at 20:52
Technically there are at least 2 errors. One of them is the round bracket not closed. – xanatos Mar 24 '11 at 20:52
@pst the null will throw. – xanatos Mar 24 '11 at 20:54
@pst the "right" response is more probably var enc = radioButton1.Checked ? Encoding.Unicode : Encoding.UTF8 – xanatos Mar 24 '11 at 20:55

2 Answers

up vote 7 down vote accepted

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 encoding = Encoding.UTF8; // Default to UTF-8

if (useUtf16RadioButton.Checked)
{
    encoding = Encoding.Unicode;
}
var text = File.ReadAllText(filePath, encoding);
share|improve this answer

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):

var Enc = Encoding.UTF8; //default
if (radioButton1.Checked) {
    Enc = Encoding.Unicode;
}

var text = File.ReadAllText(filePath, Enc);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.