using MyConflictingNamespace;
public static void Main()
"Hello world!".PrintToScreen();
public static class StringExtension
public static void PrintToScreen(this string str)
System.Console.WriteLine(str);
namespace MyConflictingNamespace
public static class StringExtension
public static void PrintToScreen(this string str)
System.Console.WriteLine("Conflict!");
System.Console.WriteLine(str);