Click here to Skip to main content
15,920,614 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Falsh Files Pin
Dave Kreskowiak18-Oct-06 8:37
mveDave Kreskowiak18-Oct-06 8:37 
QuestionRe: Falsh Files Pin
Tauseef A19-Oct-06 23:41
Tauseef A19-Oct-06 23:41 
AnswerRe: Falsh Files Pin
Dave Kreskowiak20-Oct-06 8:37
mveDave Kreskowiak20-Oct-06 8:37 
Question[Form designer] does not save my ultra-simple property / Source inside Pin
nanobyte16-Oct-06 4:49
nanobyte16-Oct-06 4:49 
AnswerRe: [Form designer] does not save my ultra-simple property / Source inside Pin
nanobyte16-Oct-06 5:34
nanobyte16-Oct-06 5:34 
GeneralRe: [Form designer] does not save my ultra-simple property / Source inside Pin
nanobyte16-Oct-06 5:40
nanobyte16-Oct-06 5:40 
Question.NET framework Pin
crazy_mads15-Oct-06 18:23
crazy_mads15-Oct-06 18:23 
AnswerRe: .NET framework Pin
Captain See Sharp15-Oct-06 19:05
Captain See Sharp15-Oct-06 19:05 
Madhuri Shekar wrote:
Can anyone explain me the entire process of a source code getting executed. How CLR works? Wat is metadata? And other basic things about .NET Framework and its components.


That is a lot to explain in one post but I will try to sum it up for you. When you compile your source code, whether it be C#, Visual Basic, F#, JScript.net, or COBOL.NET, it gets compiled down to IL (intermediate language). IL is like the assembly language of your CPU but IL is much more high level. A lot of people say that when you compile your source code that the IL will be the same as if you compiled the same style source code in a different language. This is NOT true. C#, VB.NET, and especially C++/CLI produce slightly different IL. C++/CLI has the ability to aggressively optimize the IL and also do some neat things such as deterministic object deletion. You can imagine a .NET compiler as the front end compilation process of a native C/C++ compiler. The CLR (which contains the Just-In-Time compiler or JIT) as the back end. The CLR will compile the IL into the native code that your processor executes. It will optimize it for YOUR execution environment (CPU, CASH SIZE, OS ...) The JIT of the CLR can produce highly optimized code that can even compete with C++ in some cases.

Metadata is a table that describes each and every type in your assembly (your .exe, .dll, or .netmodual). It desribes the name of all your classes, methods, properties, events ect... Metadata allows for a powerful feature called reflection which allows you to discover and execute an unknown type at run time. You can even construct an entire assembly in memory and execute it at runtime!

There is a lot of information about the .NET framework and CLR. It is an amazing platform and do not allow the doom and gloomers of managed code get you down. Stay loyal to .NET and its compatible siblings (Mono). You do not want to lag behind of this technology because it is the future and it is a bright future.

I highly recommend you get a couple books. CLR via C# is an excellent book and it will broaden your understanding of the inner workings of the .NET framework and the CLR. Although I would not recommend you get it until you get some basic knowledge of .NET and a language compatible with .NET


█▒▒▒▒▒██▒█▒██
█▒█████▒▒▒▒▒█
█▒██████▒█▒██
█▒█████▒▒▒▒▒█
█▒▒▒▒▒██▒█▒██

Question.NET framework Pin
crazy_mads15-Oct-06 18:13
crazy_mads15-Oct-06 18:13 
AnswerRe: .NET framework Pin
Captain See Sharp15-Oct-06 19:18
Captain See Sharp15-Oct-06 19:18 
QuestionMicroscope Input Pin
Bob X15-Oct-06 14:32
Bob X15-Oct-06 14:32 
AnswerRe: Microscope Input Pin
Dave Kreskowiak16-Oct-06 9:15
mveDave Kreskowiak16-Oct-06 9:15 
QuestionRe: Microscope Input Pin
Bob X16-Oct-06 18:07
Bob X16-Oct-06 18:07 
AnswerRe: Microscope Input Pin
Dave Kreskowiak16-Oct-06 18:22
mveDave Kreskowiak16-Oct-06 18:22 
GeneralRe: Microscope Input Pin
Bob X17-Oct-06 6:08
Bob X17-Oct-06 6:08 
GeneralRe: Microscope Input Pin
Dave Kreskowiak18-Oct-06 8:35
mveDave Kreskowiak18-Oct-06 8:35 
QuestionScreen resolution Pin
Tauseef A15-Oct-06 10:07
Tauseef A15-Oct-06 10:07 
AnswerRe: Screen resolution Pin
Luc Pattyn16-Oct-06 8:41
sitebuilderLuc Pattyn16-Oct-06 8:41 
AnswerRe: Screen resolution [modified] Pin
Dave Kreskowiak16-Oct-06 9:12
mveDave Kreskowiak16-Oct-06 9:12 
GeneralRe: Screen resolution Pin
Tauseef A16-Oct-06 10:34
Tauseef A16-Oct-06 10:34 
GeneralRe: Screen resolution Pin
Dave Kreskowiak16-Oct-06 15:33
mveDave Kreskowiak16-Oct-06 15:33 
QuestionVersions of Framework Pin
ExRaptor14-Oct-06 1:45
ExRaptor14-Oct-06 1:45 
AnswerRe: Versions of Framework Pin
Kevin McFarlane14-Oct-06 2:03
Kevin McFarlane14-Oct-06 2:03 
Question.NET 1.1 application performance in Windows 2003 Server Pin
Sushant Duggal13-Oct-06 22:13
Sushant Duggal13-Oct-06 22:13 
AnswerRe: .NET 1.1 application performance in Windows 2003 Server Pin
Dave Kreskowiak14-Oct-06 4:30
mveDave Kreskowiak14-Oct-06 4:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.