Thread-local-storage : LocalDataStoreSlot : Thread C# Examples


C# Examples » Thread » LocalDataStoreSlot »

 

Thread-local-storage









    
using  System;
using  System.Collections.Generic;
using  System.Diagnostics;
using  System.IO;
using  System.Reflection;
using  System.Runtime;
using  System.Runtime.CompilerServices;
using  System.Security;
using  System.Text;

public  class  MainClass
{
        public  static  void  Main()
        {
                Thread.SetData(Thread.AllocateNamedDataSlot("TestSlot"),  126);
                int  slotValue2  =  (int)Thread.GetData(Thread.GetNamedDataSlot("TestSlot"));
                Console.WriteLine(slotValue2);
        }
}
    
   
  
   



Output

126


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Thread
» LocalDataStoreSlot