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

.NET (Core and Framework)

 
QuestionQuestions on windows installer Pin
alias00184-May-08 16:55
alias00184-May-08 16:55 
QuestionDoes any one now how to work with primavera integration API??? Pin
Ahmad Nassar3-May-08 20:33
Ahmad Nassar3-May-08 20:33 
AnswerRe: Does any one now how to work with primavera integration API??? Pin
Christian Graus4-May-08 17:03
protectorChristian Graus4-May-08 17:03 
GeneralRe: Does any one now how to work with primavera integration API??? Pin
Ahmad Nassar4-May-08 19:26
Ahmad Nassar4-May-08 19:26 
GeneralRe: Does any one now how to work with primavera integration API??? Pin
Christian Graus4-May-08 19:30
protectorChristian Graus4-May-08 19:30 
QuestionHow to develop virtual environment online using C# with Managed DirectX? in 3D Pin
katelva3-May-08 8:22
katelva3-May-08 8:22 
QuestionWhat is being Jitted? Pin
Ray Kinsella2-May-08 23:06
Ray Kinsella2-May-08 23:06 
AnswerRe: What is being Jitted? Pin
Mike Dimmick3-May-08 1:08
Mike Dimmick3-May-08 1:08 
The full version of .NET Framework does not implement code pitching (discarding JITted code). Only .NET Compact Framework currently does this. See http://msdn.microsoft.com/en-us/library/ms231445.aspx[^] for a note on this.

Do watch out for dynamic assemblies for XML serialization, which if I recall correctly can end up being repeatedly recompiled if you don't use the right options to cache the serializer assembly. These are built by generating C# code and invoking the C# compiler so their cost is very high indeed. See XmlSerializing your way to a Memory Leak[^].

Otherwise, be sure you're disposing all objects you use which have a Dispose method or implement IDisposable. If you don't, the object's finalizer may need to be run, which causes it to survive the first GC and pushes it into an older generation. See "Finalization and Performance" in Garbage Collector Basics and Performance Hints[^].

Finally, for tools, FxCop will tell you if you haven't called Dispose on your member variables in your class's Dispose method, if your member variables implement IDisposable. To follow what allocations are happening where, try CLR Profiler[^].


DoEvents: Generating unexpected recursion since 1991

GeneralRe: What is being Jitted? Pin
Ray Kinsella3-May-08 4:02
Ray Kinsella3-May-08 4:02 
Questiondotnetfx2 Pin
sas94912-May-08 8:43
sas94912-May-08 8:43 
AnswerRe: dotnetfx2 Pin
Pete O'Hanlon2-May-08 8:55
mvePete O'Hanlon2-May-08 8:55 
GeneralRe: dotnetfx2 Pin
sas94912-May-08 10:57
sas94912-May-08 10:57 
AnswerRe: dotnetfx2 Pin
Thomas Stockwell2-May-08 10:57
professionalThomas Stockwell2-May-08 10:57 
QuestionWord Viewer .OCX ???? Pin
devboycpp2-May-08 7:54
devboycpp2-May-08 7:54 
AnswerRe: Word Viewer .OCX ???? Pin
Pete O'Hanlon2-May-08 8:30
mvePete O'Hanlon2-May-08 8:30 
QuestionMissing The Point Pin
Oddball2-May-08 6:10
Oddball2-May-08 6:10 
AnswerRe: Missing The Point Pin
Thomas Stockwell2-May-08 11:02
professionalThomas Stockwell2-May-08 11:02 
GeneralRe: Missing The Point Pin
Oddball2-May-08 11:22
Oddball2-May-08 11:22 
QuestionReflection Question Pin
MrColeyted1-May-08 22:41
MrColeyted1-May-08 22:41 
QuestionRe: Reflection Question Pin
Urs Enzler2-May-08 4:28
Urs Enzler2-May-08 4:28 
AnswerRe: Reflection Question Pin
Fayu5-May-08 13:46
Fayu5-May-08 13:46 
QuestionCXX0017: Error: symbol "hr" not found Pin
nilam24771-May-08 22:06
nilam24771-May-08 22:06 
AnswerRe: CXX0017: Error: symbol "hr" not found Pin
Mike Dimmick2-May-08 6:08
Mike Dimmick2-May-08 6:08 
QuestionWhy .net code is in .h File not in .cpp file Pin
Abhijit D. Babar1-May-08 20:06
Abhijit D. Babar1-May-08 20:06 
AnswerRe: Why .net code is in .h File not in .cpp file Pin
Urs Enzler2-May-08 4:31
Urs Enzler2-May-08 4:31 

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.