Tag Archives: Threads

Starting Any Method in a New Thread Using .NET

The main problem I encountered was creating a function to accept any function pointer along with an unknown number of arguments.  I got around this problem using the ThreadStart and delegate() features in C# (.NET 3.5).  First off create your … Continue reading

Posted in Code Examples | Tagged , | Comments Off on Starting Any Method in a New Thread Using .NET