2012-04-12 157 views

回答

1

我會建議一個靜態(在這種情況下,appdomain靜態)字典索引的線程ID與關聯的getters和setter thtat索引到字典使用Thread.Current。

0

您可以使用LocalDataStoreSlot類,該類在Thread終止時自動丟棄該對象。

如:

private static readonly LocalDataStoreSlot nameSlot = Thread.AllocateDataSlot(); 

public string Name 
{ 
    get { return (string)Thread.GetData(nameSlot); } 
    set { Thread.SetData(nameSlot, value); } 
}