can you help me to write a programme to show on which operating system i'm working now.

Recommended Answers

All 4 Replies

Sure - but you have to start it and get some work on your own first. If you're stuck getting started let us know, we can give you some general guidelines but you will probably not find someone who will write the program for you.

Make sure you have read this http://www.daniweb.com/forums/announcement61-2.html
even if it's not homework per se it still applies.

Yep homework or not, we arent a free set of programmers to do everyones coding for them, we volenteer to try and help you sort your own coding dilemas :)

can you help me to write a programme to show on which operating system i'm working now.

{
string str=System.Environment.OSversion.ToString();
Console.WriteLine(str);
}

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.