10 lines
212 B
C#
10 lines
212 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
class Program {
|
||
|
|
static void Main (string[] args) {
|
||
|
|
string example = string.Empty;
|
||
|
|
if (string.IsNullOrEmpty(example)) { }
|
||
|
|
if (!string.IsNullOrEmpty(example)) { }
|
||
|
|
}
|
||
|
|
}
|