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

.NET (Core and Framework)

 
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 
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 
Madhuri Shekar wrote:
Wat is the difference between interpreted code and compiled code?


Interpreted code is code that is executed by a program. Java script is a good example. Your web browser reads Java script code from a server. That code commands the interpreter to do things. Those things make up the logic of your program, (in this case your web page).

Compiled code is translated into the native code of your processor. It is extremely fast and effeciant compared to interpreted code. Imagine writing a program that will read Java script and follow the orders that the script tells it to do. That would be an interpreter. It is more complicated than that but that is the basic principle.

In .NET your programs are NOT interpreted. They are compiled down to IL. That IL is then compiled to the native code of your processor. It is optimized for your execution environment. .NET code is a little slower than native code but in some cases it can be faster for many reasons. The JIT(explained in another reply to you) can optimize for your CPU and it may contain some multimedia technology that your program can take advantage of. With native C++ you cannot assume that all your customers will be using that processor so you must compile it for an older processor. I have just scratched the surface of the deferences. I recommend you to some research on it.


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

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 
GeneralRe: .NET 1.1 application performance in Windows 2003 Server Pin
Sushant Duggal14-Oct-06 5:45
Sushant Duggal14-Oct-06 5:45 
GeneralRe: .NET 1.1 application performance in Windows 2003 Server Pin
Dave Kreskowiak14-Oct-06 19:19
mveDave Kreskowiak14-Oct-06 19:19 

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.