Lost Password?

Go Back   CodeCall Programming Forum > Software Development > C# Programming

Vote on your favorite hash algorithm here!

C# Programming C# (pronounced C-sharp) is a new object oriented language from Microsoft and is derived from C and C++. It also borrows a lot of concepts from Java too including garbage collection.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-30-2006, 01:49 PM
DevilsCharm's Avatar   
DevilsCharm DevilsCharm is offline
Programming God
 
Join Date: Jul 2006
Posts: 887
Credits: 0
Rep Power: 14
DevilsCharm is on a distinguished road
Default What is .NET anyway?

I've never understood what .NET is. Is there a .NET language, or is .NET just a set of languages? I'm guessing .NET contains many languages, because the description of this forum is "Popular .NET language", so I assume there must be more.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 07-30-2006, 05:20 PM
icepack's Avatar   
icepack icepack is offline
Programmer
 
Join Date: Jul 2006
Location: North Carolina
Posts: 115
Credits: 12
Rep Power: 9
icepack is on a distinguished road
Send a message via AIM to icepack
Default

from m$:
.NET is the Microsoft Web services strategy to connect information, people, systems, and devices through software. Integrated across the Microsoft platform, .NET technology provides the ability to quickly build, deploy, manage, and use connected, security-enhanced solutions with Web services. .NET-connected solutions enable businesses to integrate their systems more rapidly and in a more agile manner and help them realize the promise of information anytime, anywhere, on any device.

The Microsoft platform includes everything a business needs to develop and deploy a Web service-connected IT architecture: servers to host Web services, development tools to create them, applications to use them, and a worldwide network of more than 35,000 Microsoft Certified Partner organizations to provide any help you need.






//
other than that, there are several languages that support the .net framework
visual basic, c#, c++ and more
it's all about web/program integration
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 07-30-2006, 05:41 PM
brackett brackett is offline
Programmer
 
Join Date: May 2006
Posts: 193
Credits: 0
Rep Power: 10
brackett is on a distinguished road
Default

Quote:
Originally Posted by DevilsCharm
I've never understood what .NET is. Is there a .NET language, or is .NET just a set of languages? I'm guessing .NET contains many languages, because the description of this forum is "Popular .NET language", so I assume there must be more.
.NET itself is (like most marketing driven concepts) vaguely defined. For developers, though, it's pretty clear. You have:
a. The .NET Runtime which is the Common Language Runtime/CLR. This is basically the execution host for .NET code; think Java Virtual Machine. It provides the garbage collection, memory management, JIT compilation, etc.

b. The .NET type system, aka Common Type System. This are the fundamental types supported by the CLR. Think book, char, int, int64, function pointer (delegates), classes, enums, structs, etc.

c. Microsoft Intermediate Language, aka MSIL or just IL. This is the actual language that .NET compilers target. The CLR then JITs it into native machine code. IL is kind of similar to assembly, and would be no fun to code in. So, we have:

d. .NET languages. Basically any language that uses part or all of the CTS, compiles to MSIL, and is executed by the CLR. The most popular are the Visual Studio supported ones: VB.NET, C#, and C++/CLI. There are many others though, including IronPython, Ada, J#, F#, Ruby.NET, Perl.NET, even Microsoft's PowerShell I'd consider a .NET language, etc. Just about any mainstream or fringe language has a .NET port these days (not to say most of them are anything more than a proof of concept - I wouldn't know).

e. The .NET Base Class library, or BCL. These are the Microsoft provided base classes that do most of the "plumbing" for you. Everything from window controls, to SMTP, to HTTP, to sockets, to file IO, etc. has a (generally) clean and OOP interface. Though these are written in C#, due to the CTS any other language can consume them (this is also true for your own code).

f. ASP.NET is the subset and additional framework used to create web applications with .NET. It also does web services. It comes with it's specialized class libraries and framework ideas, but is generally consistent with the BCL.

g. Winforms is the subset and additional framework used to create standard Windows applications with .NET. Again, it has it's own set of libraries and framework.

h. WinFX/.NET 3.0 is the next release, including additional frameworks:
Windows Communications Foundation/WCF - aka Indigo - abstracts communication transports for distributed apps
Windows Presentation Foundation/WPF - aka Avalon - new winform concept using XAML (an XML language) with vector graphics, 3D animations, etc.
Windows Workflow Foundation/WF - a workflow framework that aims to run long running processes, with tracking, intervention, etc.

.NET, in marketing speak, is more about the systems and culture of .NET apps. Basically, interconnected systems using lots of web services, high levels of abstraction, and information sharing. Thankfully, Microsoft no longer feels the need to plug .NET at the end of every product though.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 07-31-2006, 02:48 PM
hoser2001's Avatar   
hoser2001 hoser2001 is offline
Programmer
 
Join Date: Jul 2006
Posts: 175
Credits: 0
Rep Power: 10
hoser2001 is on a distinguished road
Default

very nice brackett, where in your explanation would ADO.NET fall??? Would it be considered a base class library?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 07-31-2006, 07:38 PM
brackett brackett is offline
Programmer
 
Join Date: May 2006
Posts: 193
Credits: 0
Rep Power: 10
brackett is on a distinguished road
Default

Oops, can't believe I missed ADO.NET. For those that don't know, ADO.NET is the next gen of ADO (ActiveX Data Objects, IIRC) that basically gives a consistent interface to talk to databases and other storage/persistence providers.

ADO.NET isn't part of the BCL, but it is part of the .NET Framework. It's basically another framework built on top of the BCL like ASP.NET, Winforms, Web Services, etc.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
C# .NET Resources NeedHelp C# Programming 7 04-01-2008 10:05 AM
Microsoft .NET 3.0 Jordan General Programming 7 12-08-2006 09:18 AM
.NET without .NET installed NeedHelp Managed C++ 6 10-28-2006 05:10 PM
Visual Studio .NET Tips and Tricks free ebook Jordan Software Development Tools 2 09-14-2006 02:12 PM
.net Crane Software Development Tools 4 07-14-2006 09:50 AM


All times are GMT -5. The time now is 07:20 PM.

Contest Stats

Xav ........ 1455.48
MeTh0Dz|Reb0rn ........ 1089.45
WingedPanther ........ 977.76
marwex89 ........ 962.9
John ........ 914.37
morefood2001 ........ 911.18
Brandon W ........ 823.79
chili5 ........ 312.39
Steve.L ........ 276.28
dcs ........ 253.49

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 84%

Ads