Click here to Skip to main content
15,886,519 members

Comments by Srinubabu Ravilla (Top 18 by date)

Srinubabu Ravilla 6-Dec-16 3:49am View    
Unexpectedly I clicked on the Accept solution button. Then I redo the change and improved the question.
Srinubabu Ravilla 4-Dec-15 10:48am View    
Thank you.
Srinubabu Ravilla 4-Dec-15 10:06am View    
As you said, if i give a path of the file in command prompt the application will be open. But, i want my application to open with a name irrespective of the file path like notepad applciation. Notepad path is "C:\Users\vuyyurup\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories\Notepad.lnk" but it will still open by name through the command prompt.
Srinubabu Ravilla 7-Mar-14 1:20am View    
Thank you SA. You cleared my doubt.
Srinubabu Ravilla 7-Mar-14 0:26am View    
Dear Sergey thank you for your reply.
I am not writing it for fun.
I writing to know about whats happening here.
There is difference between
int x=10, y=10;
x=x++;
Console.WriteLine(x); // output: 10
y=x++;
Console.WriteLine(x);// output: 11

Can you explain why x value is increment first time but not second time.