473,378 Members | 1,383 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Dot Net in plain english

Hi,
i'm looking to find out exactly what .net can do for me.

Can anyone post a link to a plain english version of what it can / can't do
etc etc.

Cheers
Jan 22 '07 #1
5 1680
..NET is a large library software that simplifies writing programs under
Windows. Compared to the Win32 Windows call interface, under .NET you
spend less time on tedious tasks that have to be performed to use the
services that Windows provides and more time actually using those
services to solve your application's problems. Other runtime libraries
that preceeded it, notably the MFC Library, but .NET is much larger and
more complete.

All of this is not completely for free, as you do sacrifice some
measure of efficiency and control over precisely what's going on, but
the trade-off is usually deemed well worth it for the typical business
application.

Where the various efficiencies like memory utilization and speed are
much more critical, say, in a low-level device driver, unmanaged -- and
this word has a particular meaning in .NET -- C or C++ would be more
appropriate tools.

Hope this helps,
gp

Jan 22 '07 #2
Good explanation. Now for me, The differenece (in plain English) between
managed and unmanaged code.

David McCallum

"goldpython" <go********@gmail.comwrote in message
news:11*********************@s34g2000cwa.googlegro ups.com...
.NET is a large library software that simplifies writing programs under
Windows. Compared to the Win32 Windows call interface, under .NET you
spend less time on tedious tasks that have to be performed to use the
services that Windows provides and more time actually using those
services to solve your application's problems. Other runtime libraries
that preceeded it, notably the MFC Library, but .NET is much larger and
more complete.

All of this is not completely for free, as you do sacrifice some
measure of efficiency and control over precisely what's going on, but
the trade-off is usually deemed well worth it for the typical business
application.

Where the various efficiencies like memory utilization and speed are
much more critical, say, in a low-level device driver, unmanaged -- and
this word has a particular meaning in .NET -- C or C++ would be more
appropriate tools.

Hope this helps,
gp

Jan 23 '07 #3
"David McCallum" <dm**********@THISblueyonder.co.ukwrote in message
news:jq********************@fe2.news.blueyonder.co .uk...
Good explanation. Now for me, The differenece (in plain English) between
managed and unmanaged code.

David McCallum
Managed code is code that is run in a virtual machine environment, where
specific rules and constraints have been placed on the code, and specific
features of the environment are routinely used by the code. Managed code is
encoded in an intermediate language (MSIL for .Net, Bytecode for Java) that
the virtual machine can understand by a compiler that understands the
capabilities of the virtual machine environment.

Coding in this manner provides a controlled space in which to operate,
allowing the software developer to know, for a fact, that some of the
difficult problems typical of prior coding paradigms have been solved for
them.

Managed code is managed for the developer, not the user.

Unmanaged code is coding that is run directly by the operating system, and
calls traditional libraries in a less constrained environment. In this
environment, the programmer takes on the additional responsibility for the
tasks that could be provided by a managed environment. In exchange for
taking on additional dev responsibility, the code usually runs a bit faster
and can often access hardware resources more readily. For business
applications (GUI apps and Web apps) the difference is nearly never
noticable. For intense applications, like gaming environments, CAD systems,
real time device control, among others, sophisticated environments already
exist that perform the common tasks required by developers, so their
advantage in moving to managed code is substantially less, and the
performance cost of the constrained virtual machine may present a greater
obstacle.

I hope this helps,

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
>
"goldpython" <go********@gmail.comwrote in message
news:11*********************@s34g2000cwa.googlegro ups.com...
>.NET is a large library software that simplifies writing programs under
Windows. Compared to the Win32 Windows call interface, under .NET you
spend less time on tedious tasks that have to be performed to use the
services that Windows provides and more time actually using those
services to solve your application's problems. Other runtime libraries
that preceeded it, notably the MFC Library, but .NET is much larger and
more complete.

All of this is not completely for free, as you do sacrifice some
measure of efficiency and control over precisely what's going on, but
the trade-off is usually deemed well worth it for the typical business
application.

Where the various efficiencies like memory utilization and speed are
much more critical, say, in a low-level device driver, unmanaged -- and
this word has a particular meaning in .NET -- C or C++ would be more
appropriate tools.

Hope this helps,
gp


Jan 29 '07 #4
I would have to take issue with only one point (gaming software) here.
Managed DirectX, from personal experience, is nearly as fast as unmanaged
DirectX. It is not a wrapper for DirectX, and it sits just above the
Hardware Abstraction Layer, just like unmanaged DirectX. And, since both
rely for the most part on the graphics card to do the heavy lifting, there
is little performance difference between them.

--
HTH,

Kevin Spencer
Microsoft MVP
Software Composer
http://unclechutney.blogspot.com

The shortest distance between 2 points is a curve.

"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.comwrote in message
news:S_******************************@comcast.com. ..
"David McCallum" <dm**********@THISblueyonder.co.ukwrote in message
news:jq********************@fe2.news.blueyonder.co .uk...
>Good explanation. Now for me, The differenece (in plain English) between
managed and unmanaged code.

David McCallum

Managed code is code that is run in a virtual machine environment, where
specific rules and constraints have been placed on the code, and specific
features of the environment are routinely used by the code. Managed code
is encoded in an intermediate language (MSIL for .Net, Bytecode for Java)
that the virtual machine can understand by a compiler that understands the
capabilities of the virtual machine environment.

Coding in this manner provides a controlled space in which to operate,
allowing the software developer to know, for a fact, that some of the
difficult problems typical of prior coding paradigms have been solved for
them.

Managed code is managed for the developer, not the user.

Unmanaged code is coding that is run directly by the operating system, and
calls traditional libraries in a less constrained environment. In this
environment, the programmer takes on the additional responsibility for the
tasks that could be provided by a managed environment. In exchange for
taking on additional dev responsibility, the code usually runs a bit
faster and can often access hardware resources more readily. For business
applications (GUI apps and Web apps) the difference is nearly never
noticable. For intense applications, like gaming environments, CAD
systems, real time device control, among others, sophisticated
environments already exist that perform the common tasks required by
developers, so their advantage in moving to managed code is substantially
less, and the performance cost of the constrained virtual machine may
present a greater obstacle.

I hope this helps,

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
>>
"goldpython" <go********@gmail.comwrote in message
news:11*********************@s34g2000cwa.googlegr oups.com...
>>.NET is a large library software that simplifies writing programs under
Windows. Compared to the Win32 Windows call interface, under .NET you
spend less time on tedious tasks that have to be performed to use the
services that Windows provides and more time actually using those
services to solve your application's problems. Other runtime libraries
that preceeded it, notably the MFC Library, but .NET is much larger and
more complete.

All of this is not completely for free, as you do sacrifice some
measure of efficiency and control over precisely what's going on, but
the trade-off is usually deemed well worth it for the typical business
application.

Where the various efficiencies like memory utilization and speed are
much more critical, say, in a low-level device driver, unmanaged -- and
this word has a particular meaning in .NET -- C or C++ would be more
appropriate tools.

Hope this helps,
gp



Jan 30 '07 #5
My apologies. You are correct, the gaming framework has moved successfully
to managed code.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Kevin Spencer" <un**********@nothinks.comwrote in message
news:eP**************@TK2MSFTNGP05.phx.gbl...
>I would have to take issue with only one point (gaming software) here.
Managed DirectX, from personal experience, is nearly as fast as unmanaged
DirectX. It is not a wrapper for DirectX, and it sits just above the
Hardware Abstraction Layer, just like unmanaged DirectX. And, since both
rely for the most part on the graphics card to do the heavy lifting, there
is little performance difference between them.

--
HTH,

Kevin Spencer
Microsoft MVP
Software Composer
http://unclechutney.blogspot.com

The shortest distance between 2 points is a curve.

"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.comwrote in message
news:S_******************************@comcast.com. ..
>"David McCallum" <dm**********@THISblueyonder.co.ukwrote in message
news:jq********************@fe2.news.blueyonder.c o.uk...
>>Good explanation. Now for me, The differenece (in plain English) between
managed and unmanaged code.

David McCallum

Managed code is code that is run in a virtual machine environment, where
specific rules and constraints have been placed on the code, and specific
features of the environment are routinely used by the code. Managed code
is encoded in an intermediate language (MSIL for .Net, Bytecode for Java)
that the virtual machine can understand by a compiler that understands
the capabilities of the virtual machine environment.

Coding in this manner provides a controlled space in which to operate,
allowing the software developer to know, for a fact, that some of the
difficult problems typical of prior coding paradigms have been solved for
them.

Managed code is managed for the developer, not the user.

Unmanaged code is coding that is run directly by the operating system,
and calls traditional libraries in a less constrained environment. In
this environment, the programmer takes on the additional responsibility
for the tasks that could be provided by a managed environment. In
exchange for taking on additional dev responsibility, the code usually
runs a bit faster and can often access hardware resources more readily.
For business applications (GUI apps and Web apps) the difference is
nearly never noticable. For intense applications, like gaming
environments, CAD systems, real time device control, among others,
sophisticated environments already exist that perform the common tasks
required by developers, so their advantage in moving to managed code is
substantially less, and the performance cost of the constrained virtual
machine may present a greater obstacle.

I hope this helps,

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
>>>
"goldpython" <go********@gmail.comwrote in message
news:11*********************@s34g2000cwa.googleg roups.com...
.NET is a large library software that simplifies writing programs under
Windows. Compared to the Win32 Windows call interface, under .NET you
spend less time on tedious tasks that have to be performed to use the
services that Windows provides and more time actually using those
services to solve your application's problems. Other runtime libraries
that preceeded it, notably the MFC Library, but .NET is much larger and
more complete.

All of this is not completely for free, as you do sacrifice some
measure of efficiency and control over precisely what's going on, but
the trade-off is usually deemed well worth it for the typical business
application.

Where the various efficiencies like memory utilization and speed are
much more critical, say, in a low-level device driver, unmanaged -- and
this word has a particular meaning in .NET -- C or C++ would be more
appropriate tools.

Hope this helps,
gp



Jan 30 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Peter Nilsson | last post by:
In a post regarding toupper(), Richard Heathfield once asked me to think about what the conversion of a char to unsigned char would mean, and whether it was sensible to actually do so. And pete has...
2
by: Mike Bridge | last post by:
Is there any way to get Internet explorer to treat a text/plain .net page as plain text using asp.net? It seems like IE doesn't trust text/plain as a mime type, and so it (ironically) displays it...
10
by: Eric Lindsay | last post by:
This may be too far off topic, however I was looking at this page http://www.hixie.ch/advocacy/xhtml about XHTML problems by Ian Hickson. It is served as text/plain, according to Firefox...
2
by: plankton | last post by:
Hi all, I'm new to this group so please accept my apologies if this has already been covered! I have a site thats for my mates and myself to use from a chat room we all frequent and have been...
29
by: Michael Bulatovich | last post by:
Is there a way to use CSS to format "plain" text in an html document. By plain I mean text which is not contained by <por <h#tags. Is there no way to control how this stuff is rendered? tia
2
by: gorkface | last post by:
I've read just about every article on the net about installing PEAR on a remote server (i.e., on my web space which I rent, like just about everybody in the whole world, from an internet provider.) ...
12
by: Steve Howell | last post by:
The never-ending debate about PEP 3131 got me thinking about natural languages with respect to Python, and I have a bunch of mostly simple observations (some factual, some anecdotal). I present...
6
by: mattmao | last post by:
Hi all. There is a challenge question I encountered recently, which says: "In plain English, there are six different ways when you want to tell someone else about the current time: ...
6
by: Flyzone | last post by:
Hello, i'm trying to paste copied text from word into an input box. This text is saved into a oracle db and then used as text in another javascript. The problem is that using the saved text...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.