From c0cf89589f44be43a043025b48b9aaf50a24f231 Mon Sep 17 00:00:00 2001 From: NukeeManInfinite Date: Sat, 20 Apr 2024 17:57:02 +0300 Subject: [PATCH 1/2] changed value and name of variables --- Lesson01/LMS/MainWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lesson01/LMS/MainWindow.xaml.cs b/Lesson01/LMS/MainWindow.xaml.cs index b8f4622..a47cd43 100644 --- a/Lesson01/LMS/MainWindow.xaml.cs +++ b/Lesson01/LMS/MainWindow.xaml.cs @@ -11,8 +11,8 @@ public MainWindow() { InitializeComponent(); - string a = "hello"; - int num = 3; + string text = "hello World!"; + int number = 12; } private void Button_Click(object sender, RoutedEventArgs e) From 7fd0a1d8583882d4a1742565c5178d327a31f572 Mon Sep 17 00:00:00 2001 From: NukeeManInfinite Date: Sat, 20 Apr 2024 18:07:14 +0300 Subject: [PATCH 2/2] removed unused variables --- Lesson01/LMS/MainWindow.xaml.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lesson01/LMS/MainWindow.xaml.cs b/Lesson01/LMS/MainWindow.xaml.cs index a47cd43..93c22df 100644 --- a/Lesson01/LMS/MainWindow.xaml.cs +++ b/Lesson01/LMS/MainWindow.xaml.cs @@ -11,8 +11,6 @@ public MainWindow() { InitializeComponent(); - string text = "hello World!"; - int number = 12; } private void Button_Click(object sender, RoutedEventArgs e)