using System.Diagnostics; class Program { static void Main() { int contextId = CodeContext.Int32; Debug.WriteLine("Current CodeContext ID: " + contextId); } }In this example, we are using the `Debug.WriteLine` method to print the current CodeContext ID to the debug console. The CodeContext.Int32 property is part of the Microsoft.VisualStudio.Shell.Interop package, which provides interfaces and tools for Visual Studio extension development.