Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Last active August 11, 2022 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/0a201a09e0ede05e41e03143a3e79468 to your computer and use it in GitHub Desktop.
Save lgolubyev/0a201a09e0ede05e41e03143a3e79468 to your computer and use it in GitHub Desktop.
using System;
namespace bytehide
{
class Program
{
public static readonly string Url = "bytehide.com";
static void Main(string[] args)
{
if (string.IsNullOrEmpty(Url))
Console.WriteLine ("This string is null or empty.");
else
Console.WriteLine("This string is not null or empty.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment