Inside `Main`, type `static<space>`. Auto-complete will complete to `System.ContextStaticAttribute` rather than `static`. ```C# using System; class Program { static void Main() { static } } ```