AcManager.Controls.Helpers.AppShortcut.DeleteShortcut C# (CSharp) Method

DeleteShortcut() public static method

public static DeleteShortcut ( ) : void
return void
        public static void DeleteShortcut() {
            if (File.Exists(ShortcutLocation)) {
                File.Delete(ShortcutLocation);
                CreateShortcutCommand.RaiseCanExecuteChanged();
                DeleteShortcutCommand.RaiseCanExecuteChanged();
            }
        }