"Allowing Experimental Code"

#pragma warning disable FungusConsumer
static void Test() {
	ExperimentalMethod(); // This now compiles, thanks to the pragma warning disable directives.
}
#pragma warning restore FungusConsumer


Code snippet taken from "Complete C# Quick Reference - C# 12".