Beef
Beef copied to clipboard
[Enhancement] Allow attributes in static local variables
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;
}