using System; public class TestNull { public static void Main() { System.Text.StringBuilder sb = null; string s = sb? .ToString(); } }