© 2026 Hedgehog Software, LLC
string? myString = null; var stringIsEmpty = myString == null; if (!stringIsEmpty) { var reversedString = myString.Reverse(); Console.WriteLine(reversedString); }