7
votes
3answers
481 views
What attributes help runtime .Net performance?
I am looking for attributes I can use to ensure the best runtime performance for my .Net application by giving hints to the loader, JIT compiler or ngen.
For example we have …
0
votes
Anatomy of a “Memory Leak”
I found .Net Memory Profiler a very good help when finding memory leaks in .Net. It's not free like the Microsoft CLR Profiler, but is faster an …
0
votes
What is the best way to store user settings for a .NET application?
Or write your settings in a xml file and save it using Isolated Storage. Depending on the store you use it saves i …
1
vote
Process Memory Size - Different Counters
If you want to know how much the GC uses try:
GC.GetTotalMemory(true)
If you want to know what your process uses from Windows (VM Size column in TaskManager) try: …
1
vote
Accessing a Component on an inherited form from the base form
If you set the Modifiers property of your components to strict protected makes them accessible without the use of a components collection.
Edit:
Discoverability could be done using reflect …
3
votes
How scalable is System.Threading.Timer?
Reflector can help you show the implementation of that specific class.
…
5
votes
1
vote
Deploy MySQL Server + DB with .Net application.
Use an installer with a worked out script. Any installer like Wise, InstallShield, InnoSetup, etc will probably do.
…
2
votes
In what order are locations searched to load referenced DLLs?
Assembly loading is a rather elaborate process which depends on lots of different factors like configuration files, publisher policies, appdomain settings, CLR hosts, partial or full assembly names …
1
vote
Application to Stress Test in a Windows .NET Application
Tools like AutomatedQA TestComplete allow you to make a script which simulates a user controlling your application. Ru …
2
votes
Breakpoints in core .NET runtime?
And if you can't use source level debugging with the .Net framework source code Microsoft supplied, you could try a different debugger. Like mdbg or even windbg.
edit
…
2
votes
0
votes
Does the exe you get out of obfuscation programs vary in speed?
There are different obfuscation methods that tools can use. There are the simple rename methods that shou …
1
vote
Detecting COMCTL32 version in .NET
System.Diagnostics.Process.GetCurrentProcess.Modules gives you all the modules loaded in the current process. This also includes the unmanaged win32 dlls. You can search through the collection and …
0
votes
What attributes help runtime .Net performance?
I found another: NeutralResourcesLanguageAttribute. According to …
