BendTests.A03_LayerManagerTests.WriteThreadsTest.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
            public void Dispose()
            {
                if (db != null) { db.Dispose(); db = null; }
            }

Usage Example

Example #1
0
 public void T11_WriteThreads_Perf()
 {
     A03_LayerManagerTests.WriteThreadsTest test =
         new A03_LayerManagerTests.WriteThreadsTest(500, 7000, withMerge:true);
     test.runThreadedTest(60);
     test.Dispose();
 }