Advertisement
MulleDK19

ObfuscationTest - No Obfuscation

Jan 27th, 2012
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. private static void Main(string[] args)
  2. {
  3.     Human human = new Human("Bill Gates");
  4.     if (!human.IsDead)
  5.     {
  6.         human.Kill();
  7.     }
  8.     Console.WriteLine(human.Name + " " + (human.IsDead ? "killed successfully!" : "could not be killed!"));
  9.     Console.ReadLine();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement