A Alan Chen Jul 6, 2004 #1 Hi, In C# .NET, is non-static class data member a TLS(thread local storage)? Thanks.
D David Williams , VB.NET MVP Jul 6, 2004 #2 No, If you want a TLS you have to ask for through the Threading Class (I forget the syntax, sorry). HTH David
No, If you want a TLS you have to ask for through the Threading Class (I forget the syntax, sorry). HTH David
G Guest Jul 6, 2004 #3 You need to use Thread.AllocateDataSlot to use TLS. This link should get you started: http://msdn.microsoft.com/newsgroups/default.aspx?dg=microsoft.public.dotnet.framework&lang=en&cr=US Regards, Jakob.
You need to use Thread.AllocateDataSlot to use TLS. This link should get you started: http://msdn.microsoft.com/newsgroups/default.aspx?dg=microsoft.public.dotnet.framework&lang=en&cr=US Regards, Jakob.