AcManager.Controls.Helpers.AppShortcut.DeleteShortcut C# (CSharp) 메소드

DeleteShortcut() 공개 정적인 메소드

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