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 …
2
votes
Getting UI text from external app in C#
You could do it if that unicode text is actually a window with a caption by sending a WM_GETTEXT message.
…
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 …
2
votes
Process.StartTime Access Denied
Process of .Net 1.1 uses the Performance Counters to get the information. Either they are disabled or the user does not have administrative rights. Making sure the Performance Counters are enabled …
0
votes
What do I need to do to implement an “out of proc” COM server in C#?
Here we can read that it is possible, but the exe will be loaded as an library and not started in it's ow …
5
votes
What is the best way to inherit an array that needs to store subclass specific data?
Use more generics
abstract class Vehicle<T> where T : Axle
{
public string Name;
public List<T> Axles;
}
class Motorcycle : Vehicle<MotorcycleAxle>
{
}
class …
4
votes
3
votes
How scalable is System.Threading.Timer?
Reflector can help you show the implementation of that specific class.
…
5
votes
3
votes
How can I listen in on shortcuts when the app is the task bar in C#
You can act on global hotkeys by calling the winapi function RegisterHotKey. Also see …
1
vote
Find out how much memory is being used by an object in C#?
I have good experiences with MemProfiler. It gives you stack traces of when the object was created and all the graphs of why the object is still …
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
Using Lisp in C#
The .Net 1.1 SDK contains a LISP compiler example. See SDK\v1.1\Tool Developers Guide\Samples\clisp
…
1
vote
Obtain parameter values from StackFrame in .NET?
It seems it can't be done that way. It will only provide meta information about the method and it's parameters. Not the actual value at the time of the callstack.
Some suggest deriving you …
5
votes
How to make my code run on multiple cores?
To be able to utilize multiple cores more efficiently you should divide your work up in parts that can be executed in parallel and use threads to divide the work over the cores. You could use threa …
