public static void Main()
Console.WriteLine(strOpt == null ? "null" : strOpt.Length.ToString());
Console.WriteLine(strOpt.Length);
Console.WriteLine("No count for you");
var count = strOpt.Length;
Console.WriteLine("Count is: {count}");
Console.WriteLine("Still No count for you");
if(strOpt != null && strOpt.Length > 50){
var count = strOpt.Length;
Console.WriteLine("Count is: {count}");
Console.WriteLine("Not Long Enough");