Click here to Skip to main content
16,007,277 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: What has happend to VSS? Pin
Feng Qin6-Jun-02 16:06
Feng Qin6-Jun-02 16:06 
GeneralRe: What has happend to VSS? Pin
Stuart Dootson13-Jun-02 7:45
professionalStuart Dootson13-Jun-02 7:45 
GeneralUsing OCX controls in .NET Pin
JerzyPeter27-May-02 5:52
JerzyPeter27-May-02 5:52 
GeneralRe: Using OCX controls in .NET Pin
Nish Nishant28-May-02 4:13
sitebuilderNish Nishant28-May-02 4:13 
GeneralRe: Using OCX controls in .NET Pin
JerzyPeter28-May-02 5:24
JerzyPeter28-May-02 5:24 
GeneralRe: Using OCX controls in .NET Pin
Nish Nishant28-May-02 14:43
sitebuilderNish Nishant28-May-02 14:43 
GeneralBegginer's question Pin
Alexandru Savescu27-May-02 0:43
Alexandru Savescu27-May-02 0:43 
GeneralRe: Begginer's question Pin
James T. Johnson27-May-02 5:36
James T. Johnson27-May-02 5:36 
Alexpro wrote:
1. Are the executables produced by .NET native code are they binary interpretated (like java .class files)

A little of both. .NET code is run through a JIT compilation, where the MSIL is converted into x86 code. This can happen in two different ways. First is when you just run the application, it will compile each method as its executed (each method is only compiled once). Second there is an install-time JIT utility called ngen. ngen will do the compile on the client system.

The reason it is called install time is the way that it works, the x86 code isn't placed in the binary but in a special location in the system; so you can't run ngen on your program then ship it, you have to do it when the program is installed on the client system.

Alexpro wrote:
2. How much overhead does the garbage collection produce? (in terms of speed and memory)

That all depends on the type of application you are writing. A typical database frontend application won't see any difference; a raytracing application will probably see a large difference. There is an article on CP in the .NET section that goes into very good detail about the garbage collection algorithm.

Alexpro wrote:
3. If I am using Managed C++ can I manually delete pointers from an unmanaged code?

YES! You have to Smile | :) Anything that is unmanaged you must take care of yourself, that includes system resources too (files, sockets, handles, etc). .NET provides wrappers for many system resources, and each one of those implements IDisposable so that you can free the resources ASAP.

HTH,

James

Simplicity Rules!
GeneralBeginner Q: .NET App. Distribution Pin
matthias s.26-May-02 7:56
matthias s.26-May-02 7:56 
GeneralRe: Beginner Q: .NET App. Distribution Pin
Mazdak26-May-02 8:27
Mazdak26-May-02 8:27 
GeneralRe: Beginner Q: .NET App. Distribution Pin
matthias s.26-May-02 8:47
matthias s.26-May-02 8:47 
GeneralRe: Beginner Q: .NET App. Distribution Pin
Mazdak26-May-02 8:56
Mazdak26-May-02 8:56 
GeneralRe: Beginner Q: .NET App. Distribution Pin
matthias s.26-May-02 9:26
matthias s.26-May-02 9:26 
GeneralRe: Beginner Q: .NET App. Distribution Pin
Mazdak26-May-02 9:39
Mazdak26-May-02 9:39 
GeneralRe: Beginner Q: .NET App. Distribution Pin
James T. Johnson26-May-02 10:03
James T. Johnson26-May-02 10:03 
GeneralRe: Beginner Q: .NET App. Distribution Pin
27-May-02 18:03
suss27-May-02 18:03 
GeneralRe: Beginner Q: .NET App. Distribution Pin
Andrew Connell5-Jun-02 4:23
Andrew Connell5-Jun-02 4:23 
GeneralRe: Beginner Q: .NET App. Distribution Pin
estebanf6-Jun-02 5:14
estebanf6-Jun-02 5:14 
GeneralRe: Beginner Q: .NET App. Distribution Pin
matthias s.26-May-02 11:41
matthias s.26-May-02 11:41 
GeneralTCP/IP vs. HTTP Pin
SHaroz20-May-02 7:23
SHaroz20-May-02 7:23 
GeneralRe: TCP/IP vs. HTTP Pin
Tim Smith20-May-02 7:34
Tim Smith20-May-02 7:34 
GeneralRe: TCP/IP vs. HTTP Pin
Paul Watson27-May-02 9:29
sitebuilderPaul Watson27-May-02 9:29 
QuestionProject config out of date? Pin
Lunchy19-May-02 7:49
Lunchy19-May-02 7:49 
AnswerRe: Project config out of date? Pin
James T. Johnson21-May-02 6:10
James T. Johnson21-May-02 6:10 
GeneralRe: Project config out of date? Pin
Lunchy21-May-02 6:25
Lunchy21-May-02 6:25 

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.