20 lines
296 B
Text
20 lines
296 B
Text
using System;
|
|
|
|
namespace EmptyString
|
|
{
|
|
class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
String s = scope .();
|
|
if (s.IsEmpty)
|
|
{
|
|
Console.Writeln("string empty");
|
|
}
|
|
if (!s.IsEmpty)
|
|
{
|
|
Console.Writeln("string not empty");
|
|
}
|
|
}
|
|
}
|
|
}
|