• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

what is Microsoft .NET?

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
Is .NET sort of like a modern version of that Visual Basic runtime stuff I have sometimes encountered?
 
Originally posted by: Jeff7
Is .NET sort of like a modern version of that Visual Basic runtime stuff I have sometimes encountered?

Sort of...

.NET uses common language runtime. Safe C# is no faster than VB.NET. It all boils down to this CLR, which the .NET framework's intrepreter processes.
 
Originally posted by: xtknight[/i
Why couldn't they just write it in C++ or the like instead?
Mostly because they're lazy. Something like that is prime candidate for C++ because it's just a simple control panel.

How's that? I'd call it a prime candidate for .net because it's just a simple control panel. There's no sense in doing simple guis in a lower level, more dangerous language. Stuff that's prime candidate for c++ would be lower level things like maybe hardware access (if it hasn't already been abstracted away for you by the .net framework) or cases where performance is critical and .net isn't quite up to the task yet.

And laziness, to a degree, is a virtue in a programmer, not a fault. 🙂
 
Originally posted by: kamper
How's that? I'd call it a prime candidate for .net because it's just a simple control panel. There's no sense in doing simple guis in a lower level, more dangerous language. Stuff that's prime candidate for c++ would be lower level things like maybe hardware access (if it hasn't already been abstracted away for you by the .net framework) or cases where performance is critical and .net isn't quite up to the task yet.

And laziness, to a degree, is a virtue in a programmer, not a fault. 🙂

I would have to agree with that. It is precisely things such as this that are very nice to do in .NET, since it does not require the more low lever programming C++ can give you, and it wont require reprograming to work in Vista. Can anyone say to what extent WinFX is supposed to replace Win32? Are M$ aiming for Win32 going away totally in the future, or is WinFX just an alternative?

And 'laziness' in a programmer is nice if the programmer gets to spend more time being creative and less time fighting the programming language.
 
Back
Top