Question about C# uses...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am taking a class at a local college and have been asked to research some of the uses of the C# language. I'm a network guy, not a programmer so I was hoping that some of you would be able to help me out with a few examples of how C# can be used

Thanks a lot.
 
Don't suppose you'll get a lot of responses since that's such an open-ended
question. What are you looking for, all the gazillion types of programs a
language could be used for, or specific applications or web sites as
examples?

Jason W. said:
I am taking a class at a local college and have been asked to research
some of the uses of the C# language. I'm a network guy, not a programmer so
I was hoping that some of you would be able to help me out with a few
examples of how C# can be used.
 
Jason W. said:
I am taking a class at a local college and have been asked to research
some of the uses of the C# language. I'm a network guy, not a programmer so
I was hoping that some of you would be able to help me out with a few
examples of how C# can be used.
Thanks a lot.

This is a very nebulous question. If you want to annoy your professor, you
should remind him that C# itself is simply an ISO-standard programming
language that follows the Common Language Specification, and can compile to
..NET IL (intermediate language). The question he should be asking is what
can be done with the .NET framework.

Technicality aside, you might find a better answer here:

What is C#?
http://www.developer.com/net/csharp/article.php/3302601

Erik
 
Don't suppose you'll get a lot of responses since that's such an
open-ended
question.

Yeah. Whew! C# can be used for almost anything. It would be easier to
list what it is not good for, such as device drivers, firmware, and anything
else that is overly hardware specific. Not to say that C# isn't fine for
targeting the operating system internals via interop, it's just not any
better at that than, say, C++. The difference is that C# is much better
suited to writing GUI applications than C++ is, so if you have a GUI
application that needs to maybe access a serial port, then C# is much better
suited for that than C++ is.

For instance, see http://www.componentscience.net/elements/transport

C# is a great language for things like console applications, windows forms
applications, web services, interactive websites, mobile device (Pocket PC)
applications, windows services, database applications, component libraries,
etc...

C# is a very nice, strongly-typed, object-oriented programming language
which is suitable for modeling all sorts of real-world problems. It is
great for developing quick-and-dirty solutions, and prototypes as well as
full-blown, cross-platform, scalable, client-server applications. The
resulting applications are blazing fast and portable (at least as much as
the .NET framework is).

I hope that helps.

fwiw, I could have written a client application with C# that checks this
newsgroup and replies with a canned response to this question. Not that that
is particularly useful, but you asked a pretty open-ended question. ;o)
 
Back
Top