In the legacy spaghetti, I came across this spicy meatball:
//Keep around, might prove useful.
namespace System.Runtime.CompilerServices
{
public sealed class IsVolatile
{
private IsVolatile()
{
}
}
}
Is this possibly of any value? Or perhaps a better question, possibly of any harm (to retain)?
Hah - looks like you've got a situation similar to the "I want LINQ syntax, but I'm in 2.0 land", where you could "turn on" LINQ syntax via:
Only here, you're enabling use of the
volatile
keyword.