Is .NET maninly used for business applications.

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

Guest

Is .NET maninly used for business applications.Example stuff like Accounting
applications, payroll apps,etc..

What is it predominantly used for?
 
It's predominantly used for just about everything that software is used for.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.
 
It's predominantly used for just about everything that software is used
I second that, it's mainly used to do windows development ;-)
hehehe...

Now let me ask a question....
What are you trying to know?
 
Windows app, console apps, server apps, services, controls, applets - about
anything you can do; you can do with .Net.
 
Lloyd Dupont said:
I second that, it's mainly used to do windows development ;-)
hehehe...

Now let me ask a question....
What are you trying to know?

I am interested in applications that can interface devices connected via USB
or the serial port.
Also i am interested in design servers that an handle about 500 clients at a
time
 
I am interested in applications that can interface devices connected via
USB
or the serial port.
Also i am interested in design servers that an handle about 500 clients at
a
time

You can't write driver in .NET (yet?!), but you can communicate with
Serial/USB port.
Probably by simply using the appropriate C API.

Well performance wise .NET will behave just as well as other technology in
client server area.
But it offers new venues, such as extremely easy remoting and/or web
services...
 
You can't write driver in .NET (yet?!), but you can communicate with
Serial/USB port.
Probably by simply using the appropriate C API.

Well performance wise .NET will behave just as well as other technology in
client server area.
But it offers new venues, such as extremely easy remoting and/or web
services...
One small issue is that the communication might get disrupted for a small
timeframe when the GC kicks in.
I have a OpenGL program that I use for some VR visualizing and every now and
then the screen freezes for a second and then continues. For a game this
would kill you, but luckily it is not a game that I program where life and
death is an issue. ;-)

But except for this small isssue, .NET programs works very good for almost
anything.
 
Back
Top