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.

Possible Duplicate:
Help converting type - cannot implicitly convert type ‘string’ to ‘bool’

I am very new to the language n I am not a good programmer. This code is giving me error:

cannot implicitly convert type int to bool.

I am not sure what I am doing wrong. Can some tell me what I am doing wrong. Any help would be appreciated n any recomendation would also help.

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

   namespace ConsoleApplication2
   {
     class mysteryVal
  {
   public const int limitOfGuess = 5;

  // Data member
    public int mystVal;
         private int numOfGuess ;
      private randomNumberMagnifier mag = new randomNumberMagnifier();

      public int randomMag(int num)
     {
        return num + mystVal;
      }

     // Instance Constructor
     public mysteryVal()
     {
        mystVal = 0;
         numOfGuess = 0;
            }

           public void game(int user)
          {
              int userInput = user;
               if (numOfGuess < limitOfGuess)
                     {
                  numOfGuess++;
                 if (userInput = mag.randomMagnifier())
                   {
                }
               }

           } 


           }
                } 
share|improve this question
Different type, but same idea. Pay attention to where the error is - it'll walk you straight to the problem. – user166390 Oct 12 '12 at 3:03

marked as duplicate by pst, Habib, Toon Krijthe, Peter O., LPL Oct 13 '12 at 13:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

Correct this:

if (userInput = mag.randomMagnifier())

to:

if (userInput == mag.randomMagnifier())

Here you are assigning the value in the if statement, which is wrong. You have to check the condition, for checking condition u have to use "==".
if statement returns boolean values, and because you are assigning value here, it's giving the error.

share|improve this answer

The line

if (userInput = mag.randomMagnifier())

should be

if (userInput == mag.randomMagnifier())
share|improve this answer

An if statement always contains an expression which evaluates to a boolean value. Your line

if (userInput = mag.randomMagnifier())

is not a bool which is what is causing the error. You probably meant

if (userInput == mag.randomMagnifier())
share|improve this answer

where you declared the variable for limitOfGuess?

share|improve this answer
I declared it as a const. Right after the class declaration. – user1730332 Oct 15 '12 at 4:34

The condition

userInput = mag.randomMagnifier() 

needs to be

userInput == mag.randomMagnifier()

What you have is trying to assign the userInput value and then it tries to convert the int to bool. With C# this is not possible.

share|improve this answer

you should use == instead of = change: Lif(userinput = mag.randommagnifier()) for

if(userinput == mag.randommagnifier())
share|improve this answer

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