Advertisement
gigahf

TinyInstall.cs - Usage

Aug 16th, 2017
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1.     var installer = new TinyInstall("TinyInstall Demo"); //provide your app name
  2.     bool installer.Install();
  3.     bool installer.Uninstall();
  4.  
  5. or let the class auto decide the name!
  6.  
  7.     var installer = new TinyInstall();
  8.     bool installer.Install();
  9.     bool installer.Uninstall();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement