Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[Enhancement] Allow attributes in static local variables

Open disarray2077 opened this issue 3 years ago • 0 comments

I think that could be useful because it would allow static local variables to be thread static, example:

public static void Main()
{
	[ThreadStatic]
	static int TestThreadStatic;
}

disarray2077 avatar Sep 08 '22 19:09 disarray2077