RosettaCodeData/Task/Empty-string/C-sharp/empty-string-1.cs

10 lines
212 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using System;
class Program {
static void Main (string[] args) {
string example = string.Empty;
if (string.IsNullOrEmpty(example)) { }
if (!string.IsNullOrEmpty(example)) { }
}
}