Click here to Skip to main content
15,886,799 members
Home / Discussions / C#
   

C#

 
GeneralRe: My Downloader Tutorial Using C# and Visual Studio Pin
Pete O'Hanlon26-Mar-17 7:25
mvePete O'Hanlon26-Mar-17 7:25 
QuestionVisual studio 2015 addins to edit yaml files Pin
GABII24-Mar-17 4:29
GABII24-Mar-17 4:29 
AnswerRe: Visual studio 2015 addins to edit yaml files Pin
Pete O'Hanlon24-Mar-17 4:44
mvePete O'Hanlon24-Mar-17 4:44 
AnswerRe: Visual studio 2015 addins to edit yaml files Pin
Richard Deeming24-Mar-17 5:50
mveRichard Deeming24-Mar-17 5:50 
QuestionC# WebBrowser Control Pin
Member 231220524-Mar-17 2:25
Member 231220524-Mar-17 2:25 
AnswerRe: C# WebBrowser Control Pin
Richard Deeming24-Mar-17 3:12
mveRichard Deeming24-Mar-17 3:12 
PraiseRe: C# WebBrowser Control Pin
Ravi Bhavnani25-Mar-17 10:01
professionalRavi Bhavnani25-Mar-17 10:01 
QuestionVery Simple Question Pin
Member 1307971223-Mar-17 4:12
Member 1307971223-Mar-17 4:12 
Hi guys, I am very new to programming and I took up an online course on C# to learn on my own free time.
Apologies if I posted in the wrong forum.

I was just introduced to Math Operators and I have this question:

int x = 10;
int y = x++;
Console.WriteLine(x);
Console.WrtieLine(y);

I start without debugging and get this result:

11
10

I understand why y = 10 as (x++) is the value of x before increment. However, why is x = 11?

If I wanted x = 11, shouldn't it be:

int x = 10;
x = ++x;

I am confused because in the first example I only typed "int x = 10;" so shouldn't the value of x be 10 instead of 11?

I am using Visual Studio too.

Appreciate the help!
AnswerRe: Very Simple Question Pin
Jochen Arndt23-Mar-17 4:25
professionalJochen Arndt23-Mar-17 4:25 
AnswerRe: Very Simple Question Pin
Richard MacCutchan23-Mar-17 4:29
mveRichard MacCutchan23-Mar-17 4:29 
AnswerRe: Very Simple Question Pin
Pete O'Hanlon23-Mar-17 4:30
mvePete O'Hanlon23-Mar-17 4:30 
AnswerRe: Very Simple Question Pin
Gerry Schmitz23-Mar-17 17:38
mveGerry Schmitz23-Mar-17 17:38 
AnswerRe: Very Simple Question Pin
V.23-Mar-17 20:19
professionalV.23-Mar-17 20:19 
GeneralRe: Very Simple Question Pin
Richard MacCutchan23-Mar-17 22:43
mveRichard MacCutchan23-Mar-17 22:43 
AnswerRe: Very Simple Question Pin
OriginalGriff23-Mar-17 23:36
mveOriginalGriff23-Mar-17 23:36 
Questionmessagebox problem when process completed Pin
Akshit.b23-Mar-17 0:17
Akshit.b23-Mar-17 0:17 
AnswerRe: messagebox problem when process completed Pin
Richard MacCutchan23-Mar-17 2:08
mveRichard MacCutchan23-Mar-17 2:08 
AnswerRe: messagebox problem when process completed Pin
Dave Kreskowiak23-Mar-17 2:43
mveDave Kreskowiak23-Mar-17 2:43 
AnswerRe: messagebox problem when process completed Pin
Gerry Schmitz23-Mar-17 17:41
mveGerry Schmitz23-Mar-17 17:41 
AnswerRe: messagebox problem when process completed Pin
Luc Pattyn24-Mar-17 4:27
sitebuilderLuc Pattyn24-Mar-17 4:27 
GeneralRe: messagebox problem when process completed Pin
Akshit.b26-Mar-17 20:22
Akshit.b26-Mar-17 20:22 
QuestionHow to write a generic code to make async call to Rest Service Pin
ArunHanu22-Mar-17 0:31
ArunHanu22-Mar-17 0:31 
AnswerRe: How to write a generic code to make async call to Rest Service Pin
Nathan Minier22-Mar-17 1:13
professionalNathan Minier22-Mar-17 1:13 
GeneralRe: How to write a generic code to make async call to Rest Service Pin
ArunHanu22-Mar-17 1:43
ArunHanu22-Mar-17 1:43 
GeneralRe: How to write a generic code to make async call to Rest Service Pin
Pete O'Hanlon22-Mar-17 2:03
mvePete O'Hanlon22-Mar-17 2:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.