C#
VB
C++
Provides helper methods for executing methods asynchronously.
public static class AsyncHelper Public MustInherit NotInheritable Class AsyncHelper
public ref class AsyncHelper abstract sealed Executes an asynchronous method.
using Leadtools.Dicom.AddIn;public void ThreadFunction(){for (int i = 0; i < 1000; i++){Console.WriteLine("Count: {0}", i);}}public void TestExecute(){AsyncResult r = AsyncHelper.Execute(new Action(ThreadFunction));//// Wait 1 second for the thread to finish.//r.Wait(1000);if (r.IsCompleted)Console.WriteLine("Completed");}
Imports Leadtools.Dicom.AddInPublic Sub ThreadFunction()For i As Integer = 0 To 999Console.WriteLine("Count: {0}", i)Next iEnd SubPublic Sub TestExecute()Dim r As AsyncResult = AsyncHelper.Execute(New Action(AddressOf ThreadFunction))'' Wait 1 second for the thread to finish.'r.Wait(1000)If r.IsCompleted ThenConsole.WriteLine("Completed")End IfEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
