QuackatronHQ / Gigarepo

Use string.IsNullOrEmpty or string.IsNullOrWhiteSpace to check for empty strings CS-R1014
Anti-pattern
Major
1 occurrence in this check
Use string.IsNullOrWhiteSpace instead of comparing against empty string
 87
 88        }
 89
 90        if (emptyString == "") 91        {
 92            Console.WriteLine("String is empty!");
 93        }