1.1
This commit is contained in:
parent
fac2ee82ea
commit
bf6a7c2b4e
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
|
||||
pre_commit.ps1
|
||||
pre_commit.log
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
|
@ -1,4 +1,12 @@
|
||||
namespace Lesson_40_wf
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
public class Contacts
|
||||
{
|
||||
|
@ -1,4 +1,12 @@
|
||||
namespace Lesson_40_wf
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
|
@ -1,3 +1,11 @@
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
namespace Lesson_40_wf
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
public class Person
|
||||
{
|
||||
|
@ -1,3 +1,11 @@
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
internal static class Program
|
||||
|
@ -1,4 +1,12 @@
|
||||
using BenchmarkDotNet.Attributes;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using BenchmarkDotNet.Attributes;
|
||||
|
||||
[MemoryDiagnoser]//по мимо быстродействия тестируем использование памяти
|
||||
[RankColumn]//добавляет оценку для тестируемых методов (на основании бенчмарка) - чтобы понять какой метод лучше (не обязательно)
|
||||
|
@ -1,4 +1,12 @@
|
||||
using BenchmarkDotNet.Attributes;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using BenchmarkDotNet.Attributes;
|
||||
using BenchmarkDotNet.Columns;
|
||||
using BenchmarkDotNet.Configs;
|
||||
using BenchmarkDotNet.Loggers;
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Структура проекта
|
||||
|
10
LessonsAndTasks/Lesson 1 - Первая программа/Lesson 1 - Первая программа/Properties/AssemblyInfo.cs
10
LessonsAndTasks/Lesson 1 - Первая программа/Lesson 1 - Первая программа/Properties/AssemblyInfo.cs
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Несколько проектов в одном решении
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Инкремент и декремент. Постфиксный и префиксный.
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Операторы отношений.
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Конструкция if else
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/* Логические операторы
|
||||
*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Условный оператор множественного выбора switch(переключатель)
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Цикл while
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Цикл do while
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Цикл for
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* $1 Цикл for особенности
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Типы данных в C#
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* ключевое слово break
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* ключевое слово continue
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
public class Game
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
public class Game
|
||||
{
|
||||
public string Name { get; set; }
|
||||
}
|
@ -1,4 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class GameInfo
|
||||
{
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Тернарный оператор.
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Массивы
|
||||
|
10
LessonsAndTasks/Lesson 24 - Что такое массивы. Одномерный массив. Примеры/Properties/AssemblyInfo.cs
10
LessonsAndTasks/Lesson 24 - Что такое массивы. Одномерный массив. Примеры/Properties/AssemblyInfo.cs
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* индексы и диапазоны
|
||||
|
@ -1,4 +1,12 @@
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
/*
|
||||
* многомерные массивы
|
||||
*
|
||||
* двумерный прямоугольный массив
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Переменные в C#
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* двумерный массив
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Вывод двумерного массива
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Заполнение двумерного массива случайными числами
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Cтупенчатые (зубчатые) массивы
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Трехмерные и более массивы
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Функции и методы, что это, примеры
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Перегрузка методов (несколько реализаций одного и того же метода с разной сигнатурой)
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Область видимости, или контекст переменной
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Ссылочные (reference type) и значимые (value types) типы
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Что такое NULL
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Ввод данных в консоль
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Оператора объединения с NULL ??
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
public class Contacts
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
public class Contacts
|
||||
{
|
||||
public string PhoneNumber { get; set; }
|
||||
public string Email { get; set; }
|
||||
|
@ -1,4 +1,12 @@
|
||||
partial class Form1
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Обязательная переменная конструктора.
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
public class Person
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
public class Person
|
||||
{
|
||||
public string FirstName { get; set; }
|
||||
public string MiddleName { get; set; }
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
static class Program
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
|
10
LessonsAndTasks/Lesson 40_wf - Оператор объекдинения с NULL/Properties/Resources.Designer.cs
generated
10
LessonsAndTasks/Lesson 40_wf - Оператор объекдинения с NULL/Properties/Resources.Designer.cs
generated
@ -1,4 +1,12 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программным средством.
|
||||
// Версия среды выполнения: 4.0.30319.42000
|
||||
|
10
LessonsAndTasks/Lesson 40_wf - Оператор объекдинения с NULL/Properties/Settings.Designer.cs
generated
10
LessonsAndTasks/Lesson 40_wf - Оператор объекдинения с NULL/Properties/Settings.Designer.cs
generated
@ -1,4 +1,12 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
|
@ -1,4 +1,12 @@
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
/*
|
||||
* Оператор присваивания объединения со значением NULL ??=
|
||||
*/
|
||||
using System;
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Оператор условного null
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Ключевое слово ref
|
||||
|
10
LessonsAndTasks/Lesson 43 - Ключевое слово ref, что это и предназначение/Properties/AssemblyInfo.cs
10
LessonsAndTasks/Lesson 43 - Ключевое слово ref, что это и предназначение/Properties/AssemblyInfo.cs
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Text;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System.Reflection;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
|
@ -1,4 +1,12 @@
|
||||
using System;
|
||||
/*
|
||||
* Author: Nikolay Dvurechensky
|
||||
* Site: https://www.dvurechensky.pro/
|
||||
* Gmail: dvurechenskysoft@gmail.com
|
||||
* Last Updated: 12 мая 2025 02:47:11
|
||||
* Version: 1.0.3
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Ключевое слово params
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user