Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Basics (Retired) Perform Looping

2 Answers

= is assignment, like if you wanna assign x as 2, you do int x = 2.

== is comparison, if you wanna compare x and 2, you do if (x == 2), either true or false. hope this help

Paddy Egan
Paddy Egan
3,043 Points

Senith, just to let you know of a beginner trap.

if(x==2) can be either true or false as remon says but if x is a data type of int then if(x=2) will always be true as you can always assign x to equal 2.