Click here to Skip to main content
15,888,521 members
Home / Discussions / C#
   

C#

 
AnswerRe: Populating a TreeView in windows forms Pin
Judah Gabriel Himango31-Mar-06 5:01
sponsorJudah Gabriel Himango31-Mar-06 5:01 
QuestionWhat can i do to save files on D:\ Pin
dangkim31-Mar-06 4:23
professionaldangkim31-Mar-06 4:23 
GeneralRe: What can i do to save files on D:\ Pin
Guffa31-Mar-06 4:44
Guffa31-Mar-06 4:44 
GeneralRe: What can i do to save files on D:\ Pin
dangkim31-Mar-06 21:31
professionaldangkim31-Mar-06 21:31 
GeneralRe: What can i do to save files on D:\ Pin
Guffa3-Apr-06 2:55
Guffa3-Apr-06 2:55 
AnswerRe: What can i do to save files on D:\ Pin
User 665831-Mar-06 7:15
User 665831-Mar-06 7:15 
GeneralRe: What can i do to save files on D:\ Pin
dangkim31-Mar-06 21:36
professionaldangkim31-Mar-06 21:36 
Questionclock in statusbar? Pin
Roj31-Mar-06 4:10
Roj31-Mar-06 4:10 
AnswerRe: clock in statusbar? Pin
Ed.Poore31-Mar-06 6:06
Ed.Poore31-Mar-06 6:06 
QuestionFilter DataGrid Pin
cppdotnet31-Mar-06 3:30
cppdotnet31-Mar-06 3:30 
AnswerRe: Filter DataGrid Pin
Kodanda Pani3-Apr-06 0:00
Kodanda Pani3-Apr-06 0:00 
QuestionCan I somehow convert an array to mimic a variable arglist? Pin
dpmIris31-Mar-06 3:15
dpmIris31-Mar-06 3:15 
AnswerRe: Can I somehow convert an array to mimic a variable arglist? Pin
leppie31-Mar-06 3:34
leppie31-Mar-06 3:34 
GeneralRe: Can I somehow convert an array to mimic a variable arglist? Pin
dpmIris31-Mar-06 3:44
dpmIris31-Mar-06 3:44 
Questionlock position of form Pin
magja31-Mar-06 2:20
magja31-Mar-06 2:20 
AnswerRe: lock position of form Pin
Ravi Bhavnani31-Mar-06 5:02
professionalRavi Bhavnani31-Mar-06 5:02 
QuestionDuplicate ToolStripMenuItem Pin
hpetriffer31-Mar-06 2:20
hpetriffer31-Mar-06 2:20 
QuestionHow to create a window like mIRC's status window? Pin
alexjstubbs31-Mar-06 2:14
alexjstubbs31-Mar-06 2:14 
AnswerRe: How to create a window like mIRC's status window? Pin
LongRange.Shooter31-Mar-06 3:15
LongRange.Shooter31-Mar-06 3:15 
GeneralRe: How to create a window like mIRC's status window? Pin
alexjstubbs31-Mar-06 5:54
alexjstubbs31-Mar-06 5:54 
Questionpages in a text editor Pin
abdelhameed8131-Mar-06 1:52
abdelhameed8131-Mar-06 1:52 
AnswerRe: pages in a text editor Pin
LongRange.Shooter31-Mar-06 3:16
LongRange.Shooter31-Mar-06 3:16 
QuestionOverride parentCtrl setting childCtrl.Enabled *solved Pin
livez31-Mar-06 0:52
livez31-Mar-06 0:52 
QuestionReverse Name Assignment Pin
Shadow Sprite31-Mar-06 0:32
Shadow Sprite31-Mar-06 0:32 
AnswerRe: Reverse Name Assignment Pin
CWIZO31-Mar-06 1:32
CWIZO31-Mar-06 1:32 
You are lucky that I had this code lying on my computer becouse I usually don't do other people's homework;)

class Program
{
	static void Main(string[] args)
	{
		Console.WriteLine("Input a string:");
		string inputString = Console.ReadLine();

		Console.WriteLine("All lowercase: " + inputString.ToLower());
		Console.WriteLine("All uppercase: " + inputString.ToUpper());

		Console.Write("Reveresed string: ");
		for (int i = inputString.Length - 1; i >= 0; i--)
			Console.Write(inputString[i].ToString());

		Console.ReadLine();
	}
}


--------------------------------------------------------
My development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!

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.