Again i run into an error i don't mean to bug anyone but I'm getting an error on this code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Input_Program
{
    class Program
    {
       private static void Main()
        {

           char Y;
            char N;

           Console.WriteLine("Welcome to my bool program!");
           Console.WriteLine("Input a NON capital y or n when told to.");




            if(Y == 'y')
            {
                Console.WriteLine("Thank you,Please wait.....");
            }
        }
    }
}

Thanks for you answers!

link|improve this question

Umm... Y is never assigned a value? – Kon Mar 23 '11 at 3:14
The general rule is that you should always initialize a variable when you declare it. So you shouldn't write char Y;, but instead write char Y = 'y';. – Cody Gray Mar 23 '11 at 3:21
Oh i fetch input with c# I'm used to c++ syntax – unknown Mar 23 '11 at 3:23
feedback

4 Answers

up vote 1 down vote accepted

Your variable char Y is not initialized before using. Try to give a default value when declaring.

EDIT It seems that you want the users to input something, and assign it to the variable Y. Try:

Y = Console.ReadKey().KeyChar;
link|improve this answer
But if it has a value then i can't do the if else's – unknown Mar 23 '11 at 3:16
Thanks ill pick your answer for accepted then – unknown Mar 23 '11 at 3:20
Console.ReadKey() allows users input something, and assign it to the variable y, you can use if-else to do something according to the value of y. – Danny Chen Mar 23 '11 at 3:21
feedback
if(Y == 'y')

Y is a local variable which isn't assigned anything. So, you assign it any value before the if statement to make any comparison.

Y = 'a';  // or some character 
link|improve this answer
Would the if statement still work – unknown Mar 23 '11 at 3:17
If Y is assigned a, then Y=='y' yields to false and so the statements in if won't execute. – Mahesh Mar 23 '11 at 3:20
feedback

You're not setting Y to anything, and you're also not reading anything from the keyboard.

link|improve this answer
yep definately right – JTew Mar 23 '11 at 3:24
feedback

You could explicitly set it to null.

char Y = '<whatever_is_the_default_char>';

That would get rid of the compiler error.

The root cause of the compiler error is that when it goes to compile the if conditional nothing as been assigned to Y. The above is considered an assignment.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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