1.0
Main
This commit is contained in:
commit
058c8f2679
63
.gitattributes
vendored
Normal file
63
.gitattributes
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
###############################################################################
|
||||
# Set default behavior to automatically normalize line endings.
|
||||
###############################################################################
|
||||
* text=auto
|
||||
|
||||
###############################################################################
|
||||
# Set default behavior for command prompt diff.
|
||||
#
|
||||
# This is need for earlier builds of msysgit that does not have it on by
|
||||
# default for csharp files.
|
||||
# Note: This is only used by command line
|
||||
###############################################################################
|
||||
#*.cs diff=csharp
|
||||
|
||||
###############################################################################
|
||||
# Set the merge driver for project and solution files
|
||||
#
|
||||
# Merging from the command prompt will add diff markers to the files if there
|
||||
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||
# the diff markers are never inserted). Diff markers may cause the following
|
||||
# file extensions to fail to load in VS. An alternative would be to treat
|
||||
# these files as binary and thus will always conflict and require user
|
||||
# intervention with every merge. To do so, just uncomment the entries below
|
||||
###############################################################################
|
||||
#*.sln merge=binary
|
||||
#*.csproj merge=binary
|
||||
#*.vbproj merge=binary
|
||||
#*.vcxproj merge=binary
|
||||
#*.vcproj merge=binary
|
||||
#*.dbproj merge=binary
|
||||
#*.fsproj merge=binary
|
||||
#*.lsproj merge=binary
|
||||
#*.wixproj merge=binary
|
||||
#*.modelproj merge=binary
|
||||
#*.sqlproj merge=binary
|
||||
#*.wwaproj merge=binary
|
||||
|
||||
###############################################################################
|
||||
# behavior for image files
|
||||
#
|
||||
# image files are treated as binary by default.
|
||||
###############################################################################
|
||||
#*.jpg binary
|
||||
#*.png binary
|
||||
#*.gif binary
|
||||
|
||||
###############################################################################
|
||||
# diff behavior for common document formats
|
||||
#
|
||||
# Convert binary document formats to text before diffing them. This feature
|
||||
# is only available from the command line. Turn it on by uncommenting the
|
||||
# entries below.
|
||||
###############################################################################
|
||||
#*.doc diff=astextplain
|
||||
#*.DOC diff=astextplain
|
||||
#*.docx diff=astextplain
|
||||
#*.DOCX diff=astextplain
|
||||
#*.dot diff=astextplain
|
||||
#*.DOT diff=astextplain
|
||||
#*.pdf diff=astextplain
|
||||
#*.PDF diff=astextplain
|
||||
#*.rtf diff=astextplain
|
||||
#*.RTF diff=astextplain
|
261
.gitignore
vendored
Normal file
261
.gitignore
vendored
Normal file
@ -0,0 +1,261 @@
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Ll]og/
|
||||
|
||||
# Visual Studio 2015 cache/options directory
|
||||
.vs/
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
#wwwroot/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUNIT
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
|
||||
# Build Results of an ATL Project
|
||||
[Dd]ebugPS/
|
||||
[Rr]eleasePS/
|
||||
dlldata.c
|
||||
|
||||
# DNX
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
|
||||
*_i.c
|
||||
*_p.c
|
||||
*_i.h
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
|
||||
# Chutzpah Test files
|
||||
_Chutzpah*
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opendb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
*.VC.db
|
||||
*.VC.VC.opendb
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
*.sap
|
||||
|
||||
# TFS 2012 Local Workspace
|
||||
$tf/
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
*.DotSettings.user
|
||||
|
||||
# JustCode is a .NET coding add-in
|
||||
.JustCode
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
# MightyMoose
|
||||
*.mm.*
|
||||
AutoTest.Net/
|
||||
|
||||
# Web workbench (sass)
|
||||
.sass-cache/
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress/
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish/
|
||||
|
||||
# Publish Web Output
|
||||
*.[Pp]ublish.xml
|
||||
*.azurePubxml
|
||||
# TODO: Comment the next line if you want to checkin your web deploy settings
|
||||
# but database connection strings (with potential passwords) will be unencrypted
|
||||
#*.pubxml
|
||||
*.publishproj
|
||||
|
||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||
# in these scripts will be unencrypted
|
||||
PublishScripts/
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# The packages folder can be ignored because of Package Restore
|
||||
**/packages/*
|
||||
# except build/, which is used as an MSBuild target.
|
||||
!**/packages/build/
|
||||
# Uncomment if necessary however generally it will be regenerated when needed
|
||||
#!**/packages/repositories.config
|
||||
# NuGet v3's project.json files produces more ignoreable files
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
# Microsoft Azure Build Output
|
||||
csx/
|
||||
*.build.csdef
|
||||
|
||||
# Microsoft Azure Emulator
|
||||
ecf/
|
||||
rcf/
|
||||
|
||||
# Windows Store app package directories and files
|
||||
AppPackages/
|
||||
BundleArtifacts/
|
||||
Package.StoreAssociation.xml
|
||||
_pkginfo.txt
|
||||
|
||||
# Visual Studio cache files
|
||||
# files ending in .cache can be ignored
|
||||
*.[Cc]ache
|
||||
# but keep track of directories ending in .cache
|
||||
!*.[Cc]ache/
|
||||
|
||||
# Others
|
||||
ClientBin/
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.dbproj.schemaview
|
||||
*.jfm
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
node_modules/
|
||||
orleans.codegen.cs
|
||||
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||
#bower_components/
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# Backup & report files from converting an old project file
|
||||
# to a newer Visual Studio version. Backup files are not needed,
|
||||
# because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
UpgradeLog*.htm
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
|
||||
# Business Intelligence projects
|
||||
*.rdl.data
|
||||
*.bim.layout
|
||||
*.bim_*.settings
|
||||
|
||||
# Microsoft Fakes
|
||||
FakesAssemblies/
|
||||
|
||||
# GhostDoc plugin setting file
|
||||
*.GhostDoc.xml
|
||||
|
||||
# Node.js Tools for Visual Studio
|
||||
.ntvs_analysis.dat
|
||||
|
||||
# Visual Studio 6 build log
|
||||
*.plg
|
||||
|
||||
# Visual Studio 6 workspace options file
|
||||
*.opt
|
||||
|
||||
# Visual Studio LightSwitch build output
|
||||
**/*.HTMLClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/ModelManifest.xml
|
||||
**/*.Server/GeneratedArtifacts
|
||||
**/*.Server/ModelManifest.xml
|
||||
_Pvt_Extensions
|
||||
|
||||
# Paket dependency manager
|
||||
.paket/paket.exe
|
||||
paket-files/
|
||||
|
||||
# FAKE - F# Make
|
||||
.fake/
|
||||
|
||||
# JetBrains Rider
|
||||
.idea/
|
||||
*.sln.iml
|
||||
|
||||
# CodeRush
|
||||
.cr/
|
||||
|
||||
# Python Tools for Visual Studio (PTVS)
|
||||
__pycache__/
|
||||
*.pyc
|
BIN
Git/gitPreview.png
Normal file
BIN
Git/gitPreview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 128 KiB |
121
LICENCE
Normal file
121
LICENCE
Normal file
@ -0,0 +1,121 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
CC0 1.0 Universal
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER.
|
||||
|
||||
Statement of Purpose
|
||||
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work").
|
||||
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others.
|
||||
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
||||
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following:
|
||||
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work;
|
||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof.
|
||||
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose.
|
||||
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose.
|
||||
|
||||
4. Limitations and Disclaimers.
|
||||
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document.
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law.
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work.
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work.
|
12
LessonsAndTasks/40_wf_Lesson - Оператор объединения с NULL/40_wf_Lesson - Оператор объединения с NULL.csproj
Normal file
12
LessonsAndTasks/40_wf_Lesson - Оператор объединения с NULL/40_wf_Lesson - Оператор объединения с NULL.csproj
Normal file
@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<RootNamespace>Lesson_40_wf</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@ -0,0 +1,8 @@
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
public class Contacts
|
||||
{
|
||||
public string PhoneNumber { get; set; }
|
||||
public string Email { get; set; }
|
||||
}
|
||||
}
|
71
LessonsAndTasks/40_wf_Lesson - Оператор объединения с NULL/Form1.Designer.cs
generated
Normal file
71
LessonsAndTasks/40_wf_Lesson - Оператор объединения с NULL/Form1.Designer.cs
generated
Normal file
@ -0,0 +1,71 @@
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
button1 = new Button();
|
||||
listBox1 = new ListBox();
|
||||
SuspendLayout();
|
||||
//
|
||||
// button1
|
||||
//
|
||||
button1.Location = new Point(12, 415);
|
||||
button1.Name = "button1";
|
||||
button1.Size = new Size(136, 23);
|
||||
button1.TabIndex = 0;
|
||||
button1.Text = "button1";
|
||||
button1.UseVisualStyleBackColor = true;
|
||||
button1.Click += button1_Click;
|
||||
//
|
||||
// listBox1
|
||||
//
|
||||
listBox1.FormattingEnabled = true;
|
||||
listBox1.ItemHeight = 15;
|
||||
listBox1.Location = new Point(12, 12);
|
||||
listBox1.Name = "listBox1";
|
||||
listBox1.Size = new Size(776, 394);
|
||||
listBox1.TabIndex = 1;
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(800, 450);
|
||||
Controls.Add(listBox1);
|
||||
Controls.Add(button1);
|
||||
Name = "Form1";
|
||||
Text = "Form1";
|
||||
ResumeLayout(false);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Button button1;
|
||||
private ListBox listBox1;
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
public partial class Form1 : Form
|
||||
{
|
||||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private List<Person> GetPerson()
|
||||
{
|
||||
return new List<Person>()
|
||||
{
|
||||
new Person() {FirstName = "1", MiddleName = "2", SecondName = "3"},
|
||||
new Person() {FirstName = "11", MiddleName = "22", SecondName = "33"},
|
||||
new Person() {FirstName = "111", MiddleName = "222"},
|
||||
new Person() {FirstName = "unknown", Contacts = new Contacts() { PhoneNumber = "1234"} }
|
||||
};
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
listBox1.Items.Clear();
|
||||
var persons = GetPerson();
|
||||
|
||||
foreach (var person in persons)
|
||||
{
|
||||
listBox1.Items.Add($"{person.GetFullName()} | {person.GetPhoneNumber()}");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
@ -0,0 +1,21 @@
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
public class Person
|
||||
{
|
||||
public string FirstName { get; set; }
|
||||
public string MiddleName { get; set; }
|
||||
public string SecondName { get; set; }
|
||||
|
||||
public Contacts Contacts { get; set; }
|
||||
|
||||
public string GetFullName()
|
||||
{
|
||||
return $"Фамилия: {FirstName ?? "нет данных"} | Имя: {MiddleName ?? "нет данных"} | Отчество: {SecondName ?? "нет данных"}";
|
||||
}
|
||||
|
||||
public string GetPhoneNumber()
|
||||
{
|
||||
return $"Phone Number: {Contacts?.PhoneNumber ?? "нет данных"}";
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
namespace Lesson_40_wf
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
// To customize application configuration such as set high DPI settings or default font,
|
||||
// see https://aka.ms/applicationconfiguration.
|
||||
ApplicationConfiguration.Initialize();
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
18
LessonsAndTasks/Benchmark/81_81B_84_Benchmark.csproj
Normal file
18
LessonsAndTasks/Benchmark/81_81B_84_Benchmark.csproj
Normal file
@ -0,0 +1,18 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BenchmarkDotNet" Version="0.13.7" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lesson 81 - Структуры и классы - отличия, struct vs class\81_Lesson - Структуры и классы - отличия, struct vs class.csproj" />
|
||||
<ProjectReference Include="..\Lesson 81_B - Benchmark DotNet\81_B_Lesson - Benchmark DotNet.csproj" />
|
||||
<ProjectReference Include="..\Lesson 84 - Обобщения - производительность, коллекции\84_Lesson - Обобщения - производительность, коллекции.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
47
LessonsAndTasks/Benchmark/MyParserBenchmark.cs
Normal file
47
LessonsAndTasks/Benchmark/MyParserBenchmark.cs
Normal file
@ -0,0 +1,47 @@
|
||||
using BenchmarkDotNet.Attributes;
|
||||
|
||||
[MemoryDiagnoser]//по мимо быстродействия тестируем использование памяти
|
||||
[RankColumn]//добавляет оценку для тестируемых методов (на основании бенчмарка) - чтобы понять какой метод лучше (не обязательно)
|
||||
public class MyParserBenchmark
|
||||
{
|
||||
private const string STRING_TO_PARSE_WITH_ERROR = "qwerty22";
|
||||
private const string STRING_TO_PARSE = "54";
|
||||
|
||||
private readonly MyParser _myParser = new MyParser();
|
||||
|
||||
[Benchmark]//метка что именно эти методы мы хотим тестировать
|
||||
public void TryCathParseTestWithError()
|
||||
{
|
||||
int result = _myParser.TryCathParse(STRING_TO_PARSE_WITH_ERROR);
|
||||
}
|
||||
|
||||
[Benchmark]//метка что именно эти методы мы хотим тестировать
|
||||
public void TryParseTestWithError()
|
||||
{
|
||||
int result = _myParser.TryParse(STRING_TO_PARSE_WITH_ERROR);
|
||||
}
|
||||
|
||||
[Benchmark]//метка что именно эти методы мы хотим тестировать
|
||||
public void TryCathParseTest()
|
||||
{
|
||||
int result = _myParser.TryCathParse(STRING_TO_PARSE);
|
||||
}
|
||||
|
||||
[Benchmark]//метка что именно эти методы мы хотим тестировать
|
||||
public void TryParseTest()
|
||||
{
|
||||
int result = _myParser.TryParse(STRING_TO_PARSE);
|
||||
}
|
||||
|
||||
[Benchmark]//метка что именно эти методы мы хотим тестировать
|
||||
public void TryParseFixedTestWithError()
|
||||
{
|
||||
int result = _myParser.TryParseFixed(STRING_TO_PARSE_WITH_ERROR);
|
||||
}
|
||||
|
||||
[Benchmark]//метка что именно эти методы мы хотим тестировать
|
||||
public void TryParseFixedTest()
|
||||
{
|
||||
int result = _myParser.TryParseFixed(STRING_TO_PARSE);
|
||||
}
|
||||
}
|
222
LessonsAndTasks/Benchmark/Program.cs
Normal file
222
LessonsAndTasks/Benchmark/Program.cs
Normal file
@ -0,0 +1,222 @@
|
||||
using BenchmarkDotNet.Attributes;
|
||||
using BenchmarkDotNet.Columns;
|
||||
using BenchmarkDotNet.Configs;
|
||||
using BenchmarkDotNet.Loggers;
|
||||
using BenchmarkDotNet.Running;
|
||||
using BenchmarkDotNet.Validators;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[MemoryDiagnoser]
|
||||
[RankColumn]
|
||||
public class Benchmark_1
|
||||
{
|
||||
[Benchmark]
|
||||
public void StructTest()
|
||||
{
|
||||
StructPoint structPoint = new StructPoint()
|
||||
{
|
||||
X = 1,
|
||||
Y = 2
|
||||
};
|
||||
var result = structPoint.X = structPoint.Y;
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void ClassTest()
|
||||
{
|
||||
ClassPoint classPoint = new ClassPoint()
|
||||
{
|
||||
X = 1,
|
||||
Y = 2
|
||||
};
|
||||
var result = classPoint.X = classPoint.Y;
|
||||
}
|
||||
}
|
||||
|
||||
[MemoryDiagnoser]
|
||||
[RankColumn]
|
||||
public class Benchmark_2
|
||||
{
|
||||
[Benchmark]
|
||||
public void StructArrayTest()
|
||||
{
|
||||
var structPoints = new StructPoint[100];
|
||||
// частично находится в куче
|
||||
// в массиве через каждый интервал который отвечает
|
||||
// размеру минимального элемента находятся реальные данные структуры
|
||||
// разница в быстродействии в том, что мы выделяем память в управляемой куче лишь единожды для массива структур
|
||||
for (int i = 0; i < structPoints.Length; i++)
|
||||
{
|
||||
structPoints[i] = new StructPoint();
|
||||
}
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void ClassArrayTest()
|
||||
{
|
||||
// в начале в куче создается сам массив
|
||||
// но для каждого объекта класса есть ссылка которую мы помещаем в массив и по каждой ссылке нужно запросить данные из кучи
|
||||
ClassPoint[] classPoints = new ClassPoint[100];
|
||||
// в массиве находятся не реальные данные а ссылки на данные
|
||||
for (int i = 0; i < classPoints.Length; i++)
|
||||
{
|
||||
classPoints[i] = new ClassPoint();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[MemoryDiagnoser]
|
||||
[RankColumn]
|
||||
public class Benchmark_3
|
||||
{
|
||||
struct MyStruct
|
||||
{
|
||||
public decimal MyProperty1 { get; set; }
|
||||
public decimal MyProperty2 { get; set; }
|
||||
public decimal MyProperty3 { get; set; }
|
||||
public decimal MyProperty4 { get; set; }
|
||||
public decimal MyProperty5 { get; set; }
|
||||
public decimal MyProperty6 { get; set; }
|
||||
public decimal MyProperty7 { get; set; }
|
||||
public decimal MyProperty8 { get; set; }
|
||||
public decimal MyProperty9 { get; set; }
|
||||
public decimal MyProperty10 { get; set; }
|
||||
}
|
||||
|
||||
class MyClass
|
||||
{
|
||||
public decimal MyProperty1 { get; set; }
|
||||
public decimal MyProperty2 { get; set; }
|
||||
public decimal MyProperty3 { get; set; }
|
||||
public decimal MyProperty4 { get; set; }
|
||||
public decimal MyProperty5 { get; set; }
|
||||
public decimal MyProperty6 { get; set; }
|
||||
public decimal MyProperty7 { get; set; }
|
||||
public decimal MyProperty8 { get; set; }
|
||||
public decimal MyProperty9 { get; set; }
|
||||
public decimal MyProperty10 { get; set; }
|
||||
}
|
||||
|
||||
private MyStruct _myStruct = new MyStruct();
|
||||
private MyClass _myClass = new MyClass();
|
||||
|
||||
private void Foo(MyClass myClass)
|
||||
{
|
||||
var t = myClass.MyProperty1 + myClass.MyProperty2;
|
||||
}
|
||||
|
||||
private void Bar(MyStruct myStruct)
|
||||
{
|
||||
var t = myStruct.MyProperty1 + myStruct.MyProperty2;
|
||||
}
|
||||
|
||||
private void BarIn(in MyStruct myStruct)
|
||||
{
|
||||
var t = myStruct.MyProperty1 + myStruct.MyProperty2;
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void StructTest()
|
||||
{
|
||||
Bar(_myStruct);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void StructTestIn()
|
||||
{
|
||||
BarIn(_myStruct);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void ClassTest()
|
||||
{
|
||||
Foo(_myClass);
|
||||
}
|
||||
}
|
||||
|
||||
[MemoryDiagnoser]
|
||||
[RankColumn]
|
||||
public class Benchmark_4
|
||||
{
|
||||
[Benchmark]
|
||||
public void NoBoxing()
|
||||
{
|
||||
int res = 0;
|
||||
double a = 1;
|
||||
res += (int)a;
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void Boxing()
|
||||
{
|
||||
int res = 0;
|
||||
object a = 1;
|
||||
res += (int)a;
|
||||
}
|
||||
}
|
||||
|
||||
[MemoryDiagnoser]
|
||||
[RankColumn]
|
||||
public class Benchmark_5
|
||||
{
|
||||
[Benchmark]
|
||||
public void Swaps() // 4ns
|
||||
{
|
||||
object a = 5;
|
||||
object b = 1;
|
||||
SwapTestClass.Swap(ref a, ref b);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void GenericSwaps() // 0ns
|
||||
{
|
||||
double p1 = 5;
|
||||
double p2 = 1;
|
||||
SwapTestClass.GenericSwap(ref p1, ref p2);
|
||||
}
|
||||
}
|
||||
|
||||
[MemoryDiagnoser]
|
||||
[RankColumn]
|
||||
public class Benchmark_6
|
||||
{
|
||||
[Benchmark]
|
||||
public void ArrayListBench()
|
||||
{
|
||||
var arrayList = new ArrayList();
|
||||
for (int el = 0; el < 1000; el++)
|
||||
{
|
||||
arrayList.Add(el);
|
||||
}
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void ListBench()
|
||||
{
|
||||
var _list = new List<int>();
|
||||
for (int el = 0; el < 1000; el++)
|
||||
{
|
||||
_list.Add(el);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
//BenchmarkRunner.Run<MyParserBenchmark>();
|
||||
//BenchmarkRunner.Run<Benchmark_1>();
|
||||
//BenchmarkRunner.Run<Benchmark_2>();
|
||||
//BenchmarkRunner.Run<Benchmark_3>();
|
||||
//BenchmarkRunner.Run<Benchmark_4>();
|
||||
var config = new ManualConfig()
|
||||
.WithOptions(ConfigOptions.DisableOptimizationsValidator)
|
||||
.AddValidator(JitOptimizationsValidator.DontFailOnError)
|
||||
.AddLogger(ConsoleLogger.Default)
|
||||
.AddColumnProvider(DefaultColumnProviders.Instance);
|
||||
|
||||
BenchmarkRunner.Run<Benchmark_5>(config);
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.28307.1738
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lesson 1 - Первая программа", "Lesson 1 - Первая программа\Lesson 1 - Первая программа.csproj", "{BEC8AD79-F534-495C-B1AD-C63EFDCCA555}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{BEC8AD79-F534-495C-B1AD-C63EFDCCA555}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BEC8AD79-F534-495C-B1AD-C63EFDCCA555}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BEC8AD79-F534-495C-B1AD-C63EFDCCA555}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BEC8AD79-F534-495C-B1AD-C63EFDCCA555}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {CACE873A-C210-4B83-A3DA-2C506D7FE3BB}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
54
LessonsAndTasks/Lesson 1 - Первая программа/Lesson 1 - Первая программа/01_Lesson - Первая программа.csproj
Normal file
54
LessonsAndTasks/Lesson 1 - Первая программа/Lesson 1 - Первая программа/01_Lesson - Первая программа.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{BEC8AD79-F534-495C-B1AD-C63EFDCCA555}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_1___Первая_программа</RootNamespace>
|
||||
<AssemblyName>Lesson 1 - Первая программа</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Структура проекта
|
||||
* Структура и порядок выполнения программы
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main() // Точка входа
|
||||
{
|
||||
Console.WriteLine("Hello World"); // Ctr + F5 - Запуск без отладки
|
||||
Console.WriteLine("Привет мир");
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 1 - Первая программа/Lesson 1 - Первая программа/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 1 - Первая программа/Lesson 1 - Первая программа/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 1 - Первая программа")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 1 - Первая программа")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("bec8ad79-f534-495c-b1ad-c63efdcca555")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
31
LessonsAndTasks/Lesson 10 - Несколько проектов в одном решении/Lesson 10 - Несколько проектов в одном решении.sln
Normal file
31
LessonsAndTasks/Lesson 10 - Несколько проектов в одном решении/Lesson 10 - Несколько проектов в одном решении.sln
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.28307.1738
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lesson 10 - Несколько проектов в одном решении", "Lesson 10 - Несколько проектов в одном решении\Lesson 10 - Несколько проектов в одном решении.csproj", "{A7E7EEDE-05D5-4467-B092-5AACE88F5A90}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyProject", "MyProject\MyProject.csproj", "{4D2AA99E-1047-4F82-B26A-7C581217CC99}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{A7E7EEDE-05D5-4467-B092-5AACE88F5A90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A7E7EEDE-05D5-4467-B092-5AACE88F5A90}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A7E7EEDE-05D5-4467-B092-5AACE88F5A90}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A7E7EEDE-05D5-4467-B092-5AACE88F5A90}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{4D2AA99E-1047-4F82-B26A-7C581217CC99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{4D2AA99E-1047-4F82-B26A-7C581217CC99}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{4D2AA99E-1047-4F82-B26A-7C581217CC99}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4D2AA99E-1047-4F82-B26A-7C581217CC99}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {2247B2F0-9EFD-4C61-BC0F-F73ECE8A9381}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{A7E7EEDE-05D5-4467-B092-5AACE88F5A90}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_10___Несколько_проектов_в_одном_решении</RootNamespace>
|
||||
<AssemblyName>Lesson 10 - Несколько проектов в одном решении</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 10 - Несколько проектов в одном решении/Lesson 10 - Несколько проектов в одном решении/App.config
Normal file
6
LessonsAndTasks/Lesson 10 - Несколько проектов в одном решении/Lesson 10 - Несколько проектов в одном решении/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
14
LessonsAndTasks/Lesson 10 - Несколько проектов в одном решении/Lesson 10 - Несколько проектов в одном решении/Program.cs
Normal file
14
LessonsAndTasks/Lesson 10 - Несколько проектов в одном решении/Lesson 10 - Несколько проектов в одном решении/Program.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Несколько проектов в одном решении
|
||||
* Просто добавляем проект в решение и всё :)
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
Console.WriteLine("Hello World from Lesson 10");
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 10 - Несколько проектов в одном решении")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 10 - Несколько проектов в одном решении")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("a7e7eede-05d5-4467-b092-5aace88f5a90")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{3D82C6D9-EFBC-4F51-9A40-76D19265D814}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_11___Инкремент_и_декремент.Постфиксный_и_префиксный</RootNamespace>
|
||||
<AssemblyName>Lesson_11___Инкремент_и_декремент.Постфиксный_и_префиксный</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 11 - Инкремент и декремент. Постфиксный и префиксный/App.config
Normal file
6
LessonsAndTasks/Lesson 11 - Инкремент и декремент. Постфиксный и префиксный/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
24
LessonsAndTasks/Lesson 11 - Инкремент и декремент. Постфиксный и префиксный/Program.cs
Normal file
24
LessonsAndTasks/Lesson 11 - Инкремент и декремент. Постфиксный и префиксный/Program.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Инкремент и декремент. Постфиксный и префиксный.
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int a = 0;
|
||||
int b = 1;
|
||||
|
||||
a++; // Постфиксная - Сначала выведется переменная до инкремента а потом после него
|
||||
--a; // Префиксная - Сначала сработает увеличение переменной а результат выведется в консоль
|
||||
a--;
|
||||
a--;
|
||||
|
||||
b = ++b * b;
|
||||
|
||||
Console.WriteLine(a);
|
||||
Console.WriteLine(b);
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 11 - Инкремент и декремент. Постфиксный и префиксный/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 11 - Инкремент и декремент. Постфиксный и префиксный/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 11 - Инкремент и декремент. Постфиксный и префиксный")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 11 - Инкремент и декремент. Постфиксный и префиксный")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("3d82c6d9-efbc-4f51-9a40-76d19265d814")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
54
LessonsAndTasks/Lesson 12 - Операторы сравнения. Операции сравнения/12_Lesson - Операторы сравнения. Операции сравнения.csproj
Normal file
54
LessonsAndTasks/Lesson 12 - Операторы сравнения. Операции сравнения/12_Lesson - Операторы сравнения. Операции сравнения.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C3CDCFE1-7C6D-4122-9C0B-F82FAB30999E}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_12___Операторы_сравнения.Операции_сравнения</RootNamespace>
|
||||
<AssemblyName>Lesson_12___Операторы_сравнения.Операции_сравнения</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,35 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Операторы отношений.
|
||||
* Операции сравнения.
|
||||
*/
|
||||
|
||||
/*
|
||||
== Равно
|
||||
!= Не равно
|
||||
> Больше
|
||||
< Меньше
|
||||
>= Больше или равно
|
||||
<= Меньше или равно
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int a = 5, b = 4;
|
||||
bool result0 = a == b;
|
||||
bool result1 = a != b;
|
||||
bool result2 = a > b;
|
||||
bool result3 = a < b;
|
||||
bool result4 = a <= b;
|
||||
bool result5 = a >= b;
|
||||
Console.WriteLine(result0 + Environment.NewLine +
|
||||
result1 + Environment.NewLine +
|
||||
result2 + Environment.NewLine +
|
||||
result3 + Environment.NewLine +
|
||||
result4 + Environment.NewLine +
|
||||
result5 + Environment.NewLine);
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 12 - Операторы сравнения. Операции сравнения/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 12 - Операторы сравнения. Операции сравнения/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 12 - Операторы сравнения. Операции сравнения")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 12 - Операторы сравнения. Операции сравнения")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("c3cdcfe1-7c6d-4122-9c0b-f82fab30999e")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
54
LessonsAndTasks/Lesson 13 - Конструкция if else/13_Lesson - Конструкция if else.csproj
Normal file
54
LessonsAndTasks/Lesson 13 - Конструкция if else/13_Lesson - Конструкция if else.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{AB913711-B99C-4D68-B9EF-6D66C437F97A}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_13___Конструкция_if_else</RootNamespace>
|
||||
<AssemblyName>Lesson 13 - Конструкция if else</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
46
LessonsAndTasks/Lesson 13 - Конструкция if else/Program.cs
Normal file
46
LessonsAndTasks/Lesson 13 - Конструкция if else/Program.cs
Normal file
@ -0,0 +1,46 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Конструкция if else
|
||||
if(утверждение или выражение)
|
||||
{
|
||||
действие 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
действие 2;
|
||||
}
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
bool isInfected = true;
|
||||
|
||||
if (isInfected) // утверждение
|
||||
{
|
||||
Console.WriteLine("Персонаж инфицирован!");
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Персонаж не инфицирован!");
|
||||
}
|
||||
|
||||
int a;
|
||||
|
||||
int.TryParse(Console.ReadLine(), out a);
|
||||
|
||||
if (a == 5) // выражение
|
||||
{
|
||||
Console.WriteLine("a равно 5");
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("a не равно 5");
|
||||
}
|
||||
|
||||
//#Свой аналог
|
||||
Console.WriteLine(isInfected ? "Персонаж инфицирован!" : "Персонаж не инфицирован!");
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 13 - Конструкция if else")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 13 - Конструкция if else")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("ab913711-b99c-4d68-b9ef-6d66c437f97a")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{668DAC0A-01C5-4DD0-ACF3-0D4E9485F449}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_14___Сокращённые_логические_операции.Логические_операторы</RootNamespace>
|
||||
<AssemblyName>Lesson_14___Сокращённые_логические_операции.Логические_операторы</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 14 - Сокращённые логические операции. Логические операторы/App.config
Normal file
6
LessonsAndTasks/Lesson 14 - Сокращённые логические операции. Логические операторы/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
109
LessonsAndTasks/Lesson 14 - Сокращённые логические операции. Логические операторы/Program.cs
Normal file
109
LessonsAndTasks/Lesson 14 - Сокращённые логические операции. Логические операторы/Program.cs
Normal file
@ -0,0 +1,109 @@
|
||||
using System;
|
||||
|
||||
/* Логические операторы
|
||||
*
|
||||
* && Сокращённое И
|
||||
* || Сокращённое ИЛИ
|
||||
* & И
|
||||
* | ИЛИ
|
||||
* ! НЕ(унарный)
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
bool isInfected = true;
|
||||
|
||||
if (isInfected)
|
||||
{
|
||||
Console.WriteLine("[bool] Персонаж инфицирован!");
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("[bool] Персонаж здоров!");
|
||||
}
|
||||
|
||||
// Оператор "!"
|
||||
isInfected = false;
|
||||
if (!isInfected)
|
||||
{
|
||||
Console.WriteLine("[!] Персонаж здоров!");
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("[!] Персонаж инфицирован!");
|
||||
}
|
||||
|
||||
// Не проверяет условия если одно уже равно необходимому значению
|
||||
// Оператор "&&"
|
||||
bool isHighTemperature = true;
|
||||
|
||||
bool hasNoColing = true;
|
||||
|
||||
if (isHighTemperature && hasNoColing)
|
||||
{
|
||||
Console.WriteLine("[&&] Угроза повреждения процессора!!!");
|
||||
}
|
||||
|
||||
// Оператор "||"
|
||||
isHighTemperature = false;
|
||||
|
||||
hasNoColing = true;
|
||||
|
||||
if (isHighTemperature || hasNoColing)
|
||||
{
|
||||
Console.WriteLine("[||] Угроза повреждения процессора!!!");
|
||||
}
|
||||
|
||||
// Проверяет всегда оба выражения в условии
|
||||
// Оператор "&"
|
||||
isHighTemperature = true;
|
||||
|
||||
hasNoColing = true;
|
||||
|
||||
if (isHighTemperature & hasNoColing)
|
||||
{
|
||||
Console.WriteLine("[&] Угроза повреждения процессора!!!");
|
||||
}
|
||||
|
||||
// Оператор "|"
|
||||
isHighTemperature = false;
|
||||
|
||||
hasNoColing = true;
|
||||
|
||||
if (isHighTemperature | hasNoColing)
|
||||
{
|
||||
Console.WriteLine("[|] Угроза повреждения процессора!!!");
|
||||
}
|
||||
|
||||
// Разница работы операторов в отладчике
|
||||
// GetCoolingStatus = true, GetTemperatue = true
|
||||
if (GetTemperatue() | GetCoolingStatus())
|
||||
{
|
||||
Console.WriteLine("[|] Угроза повреждения процессора!!!");
|
||||
}
|
||||
if (GetTemperatue() || GetCoolingStatus())
|
||||
{
|
||||
Console.WriteLine("[|] Угроза повреждения процессора!!!");
|
||||
}
|
||||
if (GetTemperatue() & GetCoolingStatus())
|
||||
{
|
||||
Console.WriteLine("[&] Угроза повреждения процессора!!!");
|
||||
}
|
||||
if (GetTemperatue() && GetCoolingStatus())
|
||||
{
|
||||
Console.WriteLine("[&&] Угроза повреждения процессора!!!");
|
||||
}
|
||||
Console.ReadKey();
|
||||
}
|
||||
|
||||
private static bool GetCoolingStatus()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
private static bool GetTemperatue()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 14 - Сокращённые логические операции. Логические операторы/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 14 - Сокращённые логические операции. Логические операторы/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
|
||||
// связанные с этой сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 14 - Сокращённые логические операции. Логические операторы")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 14 - Сокращённые логические операции. Логические операторы")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// из модели COM задайте для атрибута ComVisible этого типа значение true.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID представляет идентификатор typelib, если этот проект доступен из модели COM
|
||||
[assembly: Guid("668dac0a-01c5-4dd0-acf3-0d4e9485f449")]
|
||||
|
||||
// Сведения о версии сборки состоят из указанных ниже четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Номер редакции
|
||||
//
|
||||
// Можно задать все значения или принять номера сборки и редакции по умолчанию
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{ACE8ABDC-0D05-4963-AFD8-CFF298A85A9C}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_15___Условный_оператор_множественного_выбора_switch</RootNamespace>
|
||||
<AssemblyName>Lesson 15 - Условный оператор множественного выбора switch</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
339
LessonsAndTasks/Lesson 15 - Условный оператор множественного выбора switch/Program.cs
Normal file
339
LessonsAndTasks/Lesson 15 - Условный оператор множественного выбора switch/Program.cs
Normal file
@ -0,0 +1,339 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Условный оператор множественного выбора switch(переключатель)
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int a = int.Parse(Console.ReadLine());
|
||||
switch (a)
|
||||
{
|
||||
case 1:
|
||||
{
|
||||
Console.WriteLine("Вы ввели число 1");
|
||||
Console.WriteLine("Ура");
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
case 3:
|
||||
Console.WriteLine("Вы ввели число 2 или 3");
|
||||
break;
|
||||
default:
|
||||
Console.WriteLine("Не знаю");
|
||||
break;
|
||||
}
|
||||
|
||||
string s = Console.ReadLine();
|
||||
switch (s)
|
||||
{
|
||||
case "+":
|
||||
Console.WriteLine("Вы ввели плюс");
|
||||
break;
|
||||
case "-":
|
||||
Console.WriteLine("Вы ввели минус");
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
ConsoleKey consoleKey = Console.ReadKey().Key;
|
||||
|
||||
switch (consoleKey)
|
||||
{
|
||||
case ConsoleKey.Backspace:
|
||||
Console.WriteLine("Вы нажали Backspace");
|
||||
break;
|
||||
case ConsoleKey.Tab:
|
||||
break;
|
||||
case ConsoleKey.Clear:
|
||||
break;
|
||||
case ConsoleKey.Enter:
|
||||
break;
|
||||
case ConsoleKey.Pause:
|
||||
break;
|
||||
case ConsoleKey.Escape:
|
||||
break;
|
||||
case ConsoleKey.Spacebar:
|
||||
break;
|
||||
case ConsoleKey.PageUp:
|
||||
break;
|
||||
case ConsoleKey.PageDown:
|
||||
break;
|
||||
case ConsoleKey.End:
|
||||
break;
|
||||
case ConsoleKey.Home:
|
||||
break;
|
||||
case ConsoleKey.LeftArrow:
|
||||
break;
|
||||
case ConsoleKey.UpArrow:
|
||||
break;
|
||||
case ConsoleKey.RightArrow:
|
||||
break;
|
||||
case ConsoleKey.DownArrow:
|
||||
break;
|
||||
case ConsoleKey.Select:
|
||||
break;
|
||||
case ConsoleKey.Print:
|
||||
break;
|
||||
case ConsoleKey.Execute:
|
||||
break;
|
||||
case ConsoleKey.PrintScreen:
|
||||
break;
|
||||
case ConsoleKey.Insert:
|
||||
break;
|
||||
case ConsoleKey.Delete:
|
||||
break;
|
||||
case ConsoleKey.Help:
|
||||
break;
|
||||
case ConsoleKey.D0:
|
||||
break;
|
||||
case ConsoleKey.D1:
|
||||
break;
|
||||
case ConsoleKey.D2:
|
||||
break;
|
||||
case ConsoleKey.D3:
|
||||
break;
|
||||
case ConsoleKey.D4:
|
||||
break;
|
||||
case ConsoleKey.D5:
|
||||
break;
|
||||
case ConsoleKey.D6:
|
||||
break;
|
||||
case ConsoleKey.D7:
|
||||
break;
|
||||
case ConsoleKey.D8:
|
||||
break;
|
||||
case ConsoleKey.D9:
|
||||
break;
|
||||
case ConsoleKey.A:
|
||||
break;
|
||||
case ConsoleKey.B:
|
||||
break;
|
||||
case ConsoleKey.C:
|
||||
break;
|
||||
case ConsoleKey.D:
|
||||
break;
|
||||
case ConsoleKey.E:
|
||||
break;
|
||||
case ConsoleKey.F:
|
||||
break;
|
||||
case ConsoleKey.G:
|
||||
break;
|
||||
case ConsoleKey.H:
|
||||
break;
|
||||
case ConsoleKey.I:
|
||||
break;
|
||||
case ConsoleKey.J:
|
||||
break;
|
||||
case ConsoleKey.K:
|
||||
break;
|
||||
case ConsoleKey.L:
|
||||
break;
|
||||
case ConsoleKey.M:
|
||||
break;
|
||||
case ConsoleKey.N:
|
||||
break;
|
||||
case ConsoleKey.O:
|
||||
break;
|
||||
case ConsoleKey.P:
|
||||
break;
|
||||
case ConsoleKey.Q:
|
||||
break;
|
||||
case ConsoleKey.R:
|
||||
break;
|
||||
case ConsoleKey.S:
|
||||
break;
|
||||
case ConsoleKey.T:
|
||||
break;
|
||||
case ConsoleKey.U:
|
||||
break;
|
||||
case ConsoleKey.V:
|
||||
break;
|
||||
case ConsoleKey.W:
|
||||
break;
|
||||
case ConsoleKey.X:
|
||||
break;
|
||||
case ConsoleKey.Y:
|
||||
break;
|
||||
case ConsoleKey.Z:
|
||||
break;
|
||||
case ConsoleKey.LeftWindows:
|
||||
break;
|
||||
case ConsoleKey.RightWindows:
|
||||
break;
|
||||
case ConsoleKey.Applications:
|
||||
break;
|
||||
case ConsoleKey.Sleep:
|
||||
break;
|
||||
case ConsoleKey.NumPad0:
|
||||
break;
|
||||
case ConsoleKey.NumPad1:
|
||||
break;
|
||||
case ConsoleKey.NumPad2:
|
||||
break;
|
||||
case ConsoleKey.NumPad3:
|
||||
break;
|
||||
case ConsoleKey.NumPad4:
|
||||
break;
|
||||
case ConsoleKey.NumPad5:
|
||||
break;
|
||||
case ConsoleKey.NumPad6:
|
||||
break;
|
||||
case ConsoleKey.NumPad7:
|
||||
break;
|
||||
case ConsoleKey.NumPad8:
|
||||
break;
|
||||
case ConsoleKey.NumPad9:
|
||||
break;
|
||||
case ConsoleKey.Multiply:
|
||||
break;
|
||||
case ConsoleKey.Add:
|
||||
break;
|
||||
case ConsoleKey.Separator:
|
||||
break;
|
||||
case ConsoleKey.Subtract:
|
||||
break;
|
||||
case ConsoleKey.Decimal:
|
||||
break;
|
||||
case ConsoleKey.Divide:
|
||||
break;
|
||||
case ConsoleKey.F1:
|
||||
break;
|
||||
case ConsoleKey.F2:
|
||||
break;
|
||||
case ConsoleKey.F3:
|
||||
break;
|
||||
case ConsoleKey.F4:
|
||||
break;
|
||||
case ConsoleKey.F5:
|
||||
break;
|
||||
case ConsoleKey.F6:
|
||||
break;
|
||||
case ConsoleKey.F7:
|
||||
break;
|
||||
case ConsoleKey.F8:
|
||||
break;
|
||||
case ConsoleKey.F9:
|
||||
break;
|
||||
case ConsoleKey.F10:
|
||||
break;
|
||||
case ConsoleKey.F11:
|
||||
break;
|
||||
case ConsoleKey.F12:
|
||||
break;
|
||||
case ConsoleKey.F13:
|
||||
break;
|
||||
case ConsoleKey.F14:
|
||||
break;
|
||||
case ConsoleKey.F15:
|
||||
break;
|
||||
case ConsoleKey.F16:
|
||||
break;
|
||||
case ConsoleKey.F17:
|
||||
break;
|
||||
case ConsoleKey.F18:
|
||||
break;
|
||||
case ConsoleKey.F19:
|
||||
break;
|
||||
case ConsoleKey.F20:
|
||||
break;
|
||||
case ConsoleKey.F21:
|
||||
break;
|
||||
case ConsoleKey.F22:
|
||||
break;
|
||||
case ConsoleKey.F23:
|
||||
break;
|
||||
case ConsoleKey.F24:
|
||||
break;
|
||||
case ConsoleKey.BrowserBack:
|
||||
break;
|
||||
case ConsoleKey.BrowserForward:
|
||||
break;
|
||||
case ConsoleKey.BrowserRefresh:
|
||||
break;
|
||||
case ConsoleKey.BrowserStop:
|
||||
break;
|
||||
case ConsoleKey.BrowserSearch:
|
||||
break;
|
||||
case ConsoleKey.BrowserFavorites:
|
||||
break;
|
||||
case ConsoleKey.BrowserHome:
|
||||
break;
|
||||
case ConsoleKey.VolumeMute:
|
||||
break;
|
||||
case ConsoleKey.VolumeDown:
|
||||
break;
|
||||
case ConsoleKey.VolumeUp:
|
||||
break;
|
||||
case ConsoleKey.MediaNext:
|
||||
break;
|
||||
case ConsoleKey.MediaPrevious:
|
||||
break;
|
||||
case ConsoleKey.MediaStop:
|
||||
break;
|
||||
case ConsoleKey.MediaPlay:
|
||||
break;
|
||||
case ConsoleKey.LaunchMail:
|
||||
break;
|
||||
case ConsoleKey.LaunchMediaSelect:
|
||||
break;
|
||||
case ConsoleKey.LaunchApp1:
|
||||
break;
|
||||
case ConsoleKey.LaunchApp2:
|
||||
break;
|
||||
case ConsoleKey.Oem1:
|
||||
break;
|
||||
case ConsoleKey.OemPlus:
|
||||
break;
|
||||
case ConsoleKey.OemComma:
|
||||
break;
|
||||
case ConsoleKey.OemMinus:
|
||||
break;
|
||||
case ConsoleKey.OemPeriod:
|
||||
break;
|
||||
case ConsoleKey.Oem2:
|
||||
break;
|
||||
case ConsoleKey.Oem3:
|
||||
break;
|
||||
case ConsoleKey.Oem4:
|
||||
break;
|
||||
case ConsoleKey.Oem5:
|
||||
break;
|
||||
case ConsoleKey.Oem6:
|
||||
break;
|
||||
case ConsoleKey.Oem7:
|
||||
break;
|
||||
case ConsoleKey.Oem8:
|
||||
break;
|
||||
case ConsoleKey.Oem102:
|
||||
break;
|
||||
case ConsoleKey.Process:
|
||||
break;
|
||||
case ConsoleKey.Packet:
|
||||
break;
|
||||
case ConsoleKey.Attention:
|
||||
break;
|
||||
case ConsoleKey.CrSel:
|
||||
break;
|
||||
case ConsoleKey.ExSel:
|
||||
break;
|
||||
case ConsoleKey.EraseEndOfFile:
|
||||
break;
|
||||
case ConsoleKey.Play:
|
||||
break;
|
||||
case ConsoleKey.Zoom:
|
||||
break;
|
||||
case ConsoleKey.NoName:
|
||||
break;
|
||||
case ConsoleKey.Pa1:
|
||||
break;
|
||||
case ConsoleKey.OemClear:
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 15 - Условный оператор множественного выбора switch/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 15 - Условный оператор множественного выбора switch/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
|
||||
// связанные с этой сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 15 - Условный оператор множественного выбора switch")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 15 - Условный оператор множественного выбора switch")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// из модели COM задайте для атрибута ComVisible этого типа значение true.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID представляет идентификатор typelib, если этот проект доступен из модели COM
|
||||
[assembly: Guid("ace8abdc-0d05-4963-afd8-cff298a85a9c")]
|
||||
|
||||
// Сведения о версии сборки состоят из указанных ниже четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Номер редакции
|
||||
//
|
||||
// Можно задать все значения или принять номера сборки и редакции по умолчанию
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{8FCFD429-4E9C-4B5D-B3C5-CF398BD0F3F2}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_16___Цикл_while</RootNamespace>
|
||||
<AssemblyName>Lesson 16 - Цикл while</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 16 - Цикл while/App.config
Normal file
6
LessonsAndTasks/Lesson 16 - Цикл while/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
19
LessonsAndTasks/Lesson 16 - Цикл while/Program.cs
Normal file
19
LessonsAndTasks/Lesson 16 - Цикл while/Program.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Цикл while
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int count = 0;
|
||||
int.TryParse(Console.ReadLine(), out int limit);
|
||||
while (count < limit)
|
||||
{
|
||||
count++;
|
||||
Console.WriteLine($"{count} Выполняем действия");
|
||||
}
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 16 - Цикл while")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 16 - Цикл while")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("8fcfd429-4e9c-4b5d-b3c5-cf398bd0f3f2")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{60AE567A-7D98-47A8-BBA3-74DC52A32BC8}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_17___Цикл_do_while</RootNamespace>
|
||||
<AssemblyName>Lesson 17 - Цикл do while</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 17 - Цикл do while/App.config
Normal file
6
LessonsAndTasks/Lesson 17 - Цикл do while/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
25
LessonsAndTasks/Lesson 17 - Цикл do while/Program.cs
Normal file
25
LessonsAndTasks/Lesson 17 - Цикл do while/Program.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Цикл do while
|
||||
* Всегда выполняется один раз
|
||||
* даже если условие цикла не выполянется
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int count = 5;
|
||||
while (count < 5)
|
||||
{
|
||||
count++;
|
||||
Console.WriteLine($"{count} Действие");
|
||||
}
|
||||
do
|
||||
{
|
||||
count++;
|
||||
Console.WriteLine($"{count} Действие");
|
||||
} while (count < 5);
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 17 - Цикл do while")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 17 - Цикл do while")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("60ae567a-7d98-47a8-bba3-74dc52a32bc8")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{608C0926-91C6-4B0C-B6BF-4AE25688AB70}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_18___Цикл_for</RootNamespace>
|
||||
<AssemblyName>Lesson 18 - Цикл for</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 18 - Цикл for/App.config
Normal file
6
LessonsAndTasks/Lesson 18 - Цикл for/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
26
LessonsAndTasks/Lesson 18 - Цикл for/Program.cs
Normal file
26
LessonsAndTasks/Lesson 18 - Цикл for/Program.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Цикл for
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
private static int count;
|
||||
|
||||
static void Main()
|
||||
{
|
||||
//Переменная count в счетчике существует только внутри цикла
|
||||
for (byte count = 0; count < 10; count++)
|
||||
{
|
||||
Console.WriteLine(count);
|
||||
}
|
||||
|
||||
//Переменная count объявляется вне цикла и существует вне зависимости от положения цикла в коде
|
||||
while (count < 10)
|
||||
{
|
||||
count++;
|
||||
Console.WriteLine(count);
|
||||
}
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 18 - Цикл for")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 18 - Цикл for")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("608c0926-91c6-4b0c-b6bf-4ae25688ab70")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
54
LessonsAndTasks/Lesson 19 - Цикл for в обратном порядке/19_Lesson - Цикл for в обратном порядке.csproj
Normal file
54
LessonsAndTasks/Lesson 19 - Цикл for в обратном порядке/19_Lesson - Цикл for в обратном порядке.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{EE26A5F9-9C69-470B-94C4-7F7DE42215B1}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_19___Цикл_for_в_обратном_порядке</RootNamespace>
|
||||
<AssemblyName>Lesson 19 - Цикл for в обратном порядке</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,69 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* $1 Цикл for особенности
|
||||
* $2 нескольок переменных
|
||||
* $3 Цикл for в обратном порядке
|
||||
* $4 несколько условий
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
#region $1
|
||||
int limit = int.Parse(Console.ReadLine());
|
||||
|
||||
for (int i = 1; i <= limit; i++)
|
||||
{
|
||||
Console.WriteLine(i);
|
||||
}
|
||||
|
||||
for (; ; )
|
||||
{
|
||||
Console.WriteLine("for is working");
|
||||
System.Threading.Thread.Sleep(300);
|
||||
break;
|
||||
}
|
||||
|
||||
int t = 0;
|
||||
for (; t < 3; t++)
|
||||
{
|
||||
Console.WriteLine("for_1: " + t);
|
||||
}
|
||||
|
||||
for (; t < 5; t++)
|
||||
{
|
||||
Console.WriteLine("for_2: " + t);
|
||||
}
|
||||
|
||||
for (int i = 0; i < 5;)
|
||||
{
|
||||
i++;
|
||||
Console.WriteLine(i);
|
||||
}
|
||||
#endregion
|
||||
#region $2
|
||||
for (int i = 0, j = 5; i < 10; i++)
|
||||
{
|
||||
Console.WriteLine("i: " + i);
|
||||
Console.WriteLine("j: " + j);
|
||||
j++;
|
||||
}
|
||||
#endregion
|
||||
#region $3
|
||||
for (int i = 10; i > 0; i--)
|
||||
{
|
||||
Console.WriteLine("-- " + i);
|
||||
}
|
||||
#endregion
|
||||
#region $4
|
||||
for (int i = 0, j = 5; i < 10 && j < 12; i++)
|
||||
{
|
||||
Console.WriteLine("i: " + i);
|
||||
Console.WriteLine("j: " + j);
|
||||
j++;
|
||||
}
|
||||
#endregion
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 19 - Цикл for в обратном порядке")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 19 - Цикл for в обратном порядке")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("ee26a5f9-9c69-470b-94c4-7f7de42215b1")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.28307.1738
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lesson 2 Типы Данных", "Lesson 2 Типы Данных\Lesson 2 Типы Данных.csproj", "{DEBC4CED-8964-455A-8DEB-6FEADAF2851F}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{DEBC4CED-8964-455A-8DEB-6FEADAF2851F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DEBC4CED-8964-455A-8DEB-6FEADAF2851F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DEBC4CED-8964-455A-8DEB-6FEADAF2851F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{DEBC4CED-8964-455A-8DEB-6FEADAF2851F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {1E03A4EA-C95A-4384-9261-E58CC086A255}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
54
LessonsAndTasks/Lesson 2 - Типы Данных/Lesson 2 Типы Данных/02_Lesson - Типы Данных.csproj
Normal file
54
LessonsAndTasks/Lesson 2 - Типы Данных/Lesson 2 Типы Данных/02_Lesson - Типы Данных.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{DEBC4CED-8964-455A-8DEB-6FEADAF2851F}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_2_Типы_Данных</RootNamespace>
|
||||
<AssemblyName>Lesson 2 Типы Данных</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,58 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Типы данных в C#
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
string msg = "Тип {0,8} |\t.Net {1,8} |\tРазмер = {2} \t| MIN = {3,30}\t| MAX = {4}";
|
||||
|
||||
Console.Title = "Типы данных в C#";
|
||||
|
||||
Console.WriteLine("\n\t\t\t\t\tЧИСЛОВЫЕ (целочисленные) ТИПЫ:\n");
|
||||
|
||||
Console.WriteLine(string.Format(msg, "byte", typeof(byte).Name, sizeof(byte), byte.MinValue, byte.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "sbyte", typeof(sbyte).Name, sizeof(sbyte), sbyte.MinValue, sbyte.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "short", typeof(short).Name, sizeof(short), short.MinValue, short.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "ushort", typeof(ushort).Name, sizeof(ushort), ushort.MinValue, ushort.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "int", typeof(int).Name, sizeof(int), int.MinValue, int.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "uint", typeof(uint).Name, sizeof(uint), uint.MinValue, uint.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "long", typeof(long).Name, sizeof(long), long.MinValue, long.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "ulong", typeof(ulong).Name, sizeof(ulong), ulong.MinValue, ulong.MaxValue));
|
||||
|
||||
Console.WriteLine("\n\t\t\t\t\tЧИСЛОВЫЕ (с плавающей точкой) ТИПЫ:\n");
|
||||
|
||||
Console.WriteLine(string.Format(msg, "float", typeof(float).Name, sizeof(float), float.MinValue, float.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "double", typeof(double).Name, sizeof(double), double.MinValue, double.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "decimal", typeof(decimal).Name, sizeof(decimal), decimal.MinValue, decimal.MaxValue));
|
||||
|
||||
Console.WriteLine("\n\t\t\t\t\tСИМВОЛЬНЫЕ ТИПЫ:\n");
|
||||
|
||||
Console.WriteLine(string.Format(msg, "char", typeof(char).Name, sizeof(char), char.MinValue, char.MaxValue));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "string", typeof(string).Name, "N/A", "N/A", "N/A"));
|
||||
|
||||
Console.WriteLine("\n\t\t\t\t\tЛОГИЧЕСКИЙ ТИП:\n");
|
||||
|
||||
Console.WriteLine(string.Format(msg, "bool", typeof(bool).Name, sizeof(bool), false, true));
|
||||
|
||||
Console.WriteLine("\n\t\t\t\t\tОСОБЫЕ ТИПЫ:\n");
|
||||
|
||||
Console.WriteLine(string.Format(msg, "object", typeof(object).Name, "N/A", "N/A", "N/A"));
|
||||
|
||||
Console.WriteLine(string.Format(msg, "dynamic", "N/A", "N/A", "N/A", "N/A"));
|
||||
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 2 - Типы Данных/Lesson 2 Типы Данных/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 2 - Типы Данных/Lesson 2 Типы Данных/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 2 Типы Данных")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 2 Типы Данных")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("debc4ced-8964-455a-8deb-6feadaf2851f")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
54
LessonsAndTasks/Lesson 20 - Ключевое слово break (оператор)/20_Lesson - Ключевое слово break (оператор).csproj
Normal file
54
LessonsAndTasks/Lesson 20 - Ключевое слово break (оператор)/20_Lesson - Ключевое слово break (оператор).csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{E962F366-B388-4EE4-B276-000F1B4B8052}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_20___Ключевое_слово_break__оператор_</RootNamespace>
|
||||
<AssemblyName>Lesson 20 - Ключевое слово break %28оператор%29</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,23 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* ключевое слово break
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
for (int i = 0; i < 100; i++)
|
||||
{
|
||||
Console.WriteLine(i);
|
||||
|
||||
string msg = Console.ReadLine();
|
||||
|
||||
if (msg == "exit")
|
||||
break;
|
||||
else if (i == 10)
|
||||
break;
|
||||
}
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 20 - Ключевое слово break (оператор)/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 20 - Ключевое слово break (оператор)/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 20 - Ключевое слово break (оператор)")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 20 - Ключевое слово break (оператор)")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("e962f366-b388-4ee4-b276-000f1b4b8052")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
54
LessonsAndTasks/Lesson 21 - Ключевое слово continue/21_Lesson - Ключевое слово continue.csproj
Normal file
54
LessonsAndTasks/Lesson 21 - Ключевое слово continue/21_Lesson - Ключевое слово continue.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C8EB51D4-B80E-4227-9DC6-6E6D088F24BB}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_21___Ключевое_слово_continue</RootNamespace>
|
||||
<AssemblyName>Lesson 21 - Ключевое слово continue</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* ключевое слово continue
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
for (int i = 0; i < 100; i++)
|
||||
{
|
||||
if (i == 2)
|
||||
continue;
|
||||
Console.WriteLine(i);
|
||||
}
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 21 - Ключевое слово continue")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 21 - Ключевое слово continue")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("c8eb51d4-b80e-4227-9dc6-6e6d088f24bb")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
56
LessonsAndTasks/Lesson 22 - Вложенные циклы. Как работают/22_Lesson - Вложенные циклы. Как работают.csproj
Normal file
56
LessonsAndTasks/Lesson 22 - Вложенные циклы. Как работают/22_Lesson - Вложенные циклы. Как работают.csproj
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{542E79A5-E2AE-4446-AFF6-17D55EDA286D}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_22___Вложенные_циклы.Как_работают</RootNamespace>
|
||||
<AssemblyName>Lesson_22___Вложенные_циклы.Как_работают</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Game.cs" />
|
||||
<Compile Include="GameInfo.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,4 @@
|
||||
public class Game
|
||||
{
|
||||
public string Name { get; set; }
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class GameInfo
|
||||
{
|
||||
public GameType TypeOfGame { get; set; }
|
||||
|
||||
public List<Game> Games { get; set; }
|
||||
}
|
||||
|
||||
public enum GameType
|
||||
{
|
||||
RPG,
|
||||
Shooter,
|
||||
Strategy
|
||||
}
|
@ -0,0 +1,207 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
/*
|
||||
* Вложенные циклы
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
for (int i = 1; i <= 3; i++)
|
||||
{
|
||||
Console.WriteLine("цикл 1 итерация № " + i);
|
||||
for (int h = 1; h <= 5; h++)
|
||||
{
|
||||
Console.WriteLine("\t цикл 2 итерация № " + h);
|
||||
for (int k = 1; k <= 2; k++)
|
||||
{
|
||||
Console.WriteLine("\t\t цикл 3 итерация № " + k);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Console.ReadLine();
|
||||
Console.WriteLine("Высота");
|
||||
int height = int.Parse(Console.ReadLine());
|
||||
Console.WriteLine("Ширина");
|
||||
int width = int.Parse(Console.ReadLine());
|
||||
|
||||
for (int cube = 0; cube < height; cube++)
|
||||
{
|
||||
for (int line = 0; line < width; line++)
|
||||
{
|
||||
Console.Write("#");
|
||||
|
||||
}
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
// Example_1
|
||||
|
||||
int rows = 5;
|
||||
int columns = 10;
|
||||
var myArray = GetRandomArray(rows, columns);
|
||||
|
||||
for (int g = 0; g < rows; g++)
|
||||
{
|
||||
for (int l = 0; l < columns; l++)
|
||||
{
|
||||
Console.Write($"{myArray[g, l]}\t");
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
/*
|
||||
* Example_2
|
||||
*/
|
||||
var gamesInfo = GetGamesInfo();
|
||||
|
||||
for (int u = 0; u < gamesInfo.Count; u++)
|
||||
{
|
||||
Console.WriteLine($"{gamesInfo[u].TypeOfGame}:");
|
||||
|
||||
for (int p = 0; p < gamesInfo[u].Games.Count; p++)
|
||||
{
|
||||
Console.WriteLine($" {gamesInfo[u].Games[p].Name}");
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
/*
|
||||
* HomeWork
|
||||
*/
|
||||
for (int r = 0; r < 10; r++)
|
||||
{
|
||||
for (int rr = 0; rr <= r; rr++)
|
||||
{
|
||||
Console.Write("#");
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
Console.WriteLine();
|
||||
|
||||
for (int r = 10; r > 0; r--)
|
||||
{
|
||||
for (int rr = 0; rr < r; rr++)
|
||||
{
|
||||
Console.Write("#");
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
Console.WriteLine();
|
||||
|
||||
for (int r = 10; r > 0; r--)
|
||||
{
|
||||
for (int rr = 1; rr < r; rr++)
|
||||
{
|
||||
Console.Write(" ");
|
||||
}
|
||||
|
||||
for (int rrr = 0; rrr < 11 - r; rrr++)
|
||||
{
|
||||
Console.Write("#");
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
Console.WriteLine();
|
||||
|
||||
for (int r = 0; r < 10; r++)
|
||||
{
|
||||
for (int rr = 0; rr < r; rr++)
|
||||
{
|
||||
Console.Write(" ");
|
||||
}
|
||||
|
||||
for (int rrr = 0; rrr < 10 - r; rrr++)
|
||||
{
|
||||
Console.Write("#");
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
Console.WriteLine();
|
||||
|
||||
Console.ReadLine();
|
||||
}
|
||||
|
||||
/*
|
||||
* Example_1
|
||||
*/
|
||||
static int[,] GetRandomArray(int rows, int columns)
|
||||
{
|
||||
Random random = new Random();
|
||||
var result = new int[rows, columns];
|
||||
|
||||
for (int i = 0; i < rows; i++)
|
||||
{
|
||||
for (int j = 0; j < columns; j++)
|
||||
{
|
||||
//Генерация случайного числа от 0 до 100
|
||||
result[i, j] = random.Next(100);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/*
|
||||
* Example_2
|
||||
*/
|
||||
static List<GameInfo> GetGamesInfo()
|
||||
{
|
||||
return new List<GameInfo>()
|
||||
{
|
||||
new GameInfo
|
||||
{
|
||||
TypeOfGame = GameType.RPG,
|
||||
Games = new List<Game>()
|
||||
{
|
||||
new Game() { Name = "Fallout 4"},
|
||||
new Game() { Name = "Gothic 2"},
|
||||
new Game() { Name = "The Elder Scrolls 3: Morrowind"}
|
||||
}
|
||||
},
|
||||
new GameInfo
|
||||
{
|
||||
TypeOfGame = GameType.Shooter,
|
||||
Games = new List<Game>()
|
||||
{
|
||||
new Game() { Name = "Counter-Strike: Global Offensive"},
|
||||
new Game() { Name = "Battlefield 4"},
|
||||
new Game() { Name = "Doom"}
|
||||
}
|
||||
},
|
||||
new GameInfo
|
||||
{
|
||||
TypeOfGame = GameType.Strategy,
|
||||
Games = new List<Game>()
|
||||
{
|
||||
new Game() { Name = "Civilization VI"},
|
||||
new Game() { Name = "Rome: Total War"},
|
||||
new Game() { Name = "Starcraft II"}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 22 - Вложенные циклы. Как работают")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 22 - Вложенные циклы. Как работают")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("542e79a5-e2ae-4446-aff6-17d55eda286d")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
53
LessonsAndTasks/Lesson 23 - Тернарный оператор. Что это. Пример/23_Lesson - Тернарный оператор. Что это. Пример.csproj
Normal file
53
LessonsAndTasks/Lesson 23 - Тернарный оператор. Что это. Пример/23_Lesson - Тернарный оператор. Что это. Пример.csproj
Normal file
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C3596099-8F86-47F2-BA83-EA56E3BC76D0}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_23___Тернарный_оператор.Что_это.Пример</RootNamespace>
|
||||
<AssemblyName>Lesson_23___Тернарный_оператор.Что_это.Пример</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,48 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Тернарный оператор.
|
||||
* [первый операнд - условие]?[второй операнд if_true]:[третий операнд if_false]
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int a = 0;
|
||||
|
||||
a++; //Унарная операция
|
||||
int b = 0;
|
||||
int c = a + b; //Бинарная операция
|
||||
|
||||
//Тернарная операция
|
||||
bool accessAllowed;
|
||||
string storedPassword = "qwerty";
|
||||
string enteredPassword = Console.ReadLine();
|
||||
|
||||
if (enteredPassword == storedPassword)
|
||||
accessAllowed = true;
|
||||
else
|
||||
accessAllowed = false;
|
||||
|
||||
Console.WriteLine(accessAllowed);
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
accessAllowed = enteredPassword == storedPassword ? true : false;
|
||||
|
||||
Console.WriteLine(accessAllowed ? "успешно" : "не успешно");
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
accessAllowed = Console.ReadLine() == "qwerty";
|
||||
Console.WriteLine(accessAllowed ? "успешно" : "не успешно");
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
int inputData = int.Parse(Console.ReadLine());
|
||||
int outputData = inputData < 0 ? 0 : inputData;
|
||||
Console.WriteLine(outputData);
|
||||
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 23 - Тернарный оператор. Что это. Пример/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 23 - Тернарный оператор. Что это. Пример/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 23 - Тернарный оператор. Что это. Пример")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 23 - Тернарный оператор. Что это. Пример")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("c3596099-8f86-47f2-ba83-ea56e3bc76d0")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{46607273-7BE4-41A6-90E5-ACFC1479A9AC}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_24___Что_такое_массивы.Одномерный_массив.Примеры</RootNamespace>
|
||||
<AssemblyName>Lesson_24___Что_такое_массивы.Одномерный_массив.Примеры</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
/*
|
||||
* Массивы
|
||||
*
|
||||
* Одномерные массивы
|
||||
*
|
||||
* Тип_элементов_массива [] имя_массива;
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int[] myArray;
|
||||
|
||||
myArray = new int[5];
|
||||
|
||||
myArray[0] = 10;
|
||||
myArray[1] = 3;
|
||||
|
||||
int a = myArray[0];
|
||||
|
||||
Console.WriteLine(a);
|
||||
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 24 - Что такое массивы. Одномерный массив. Примеры/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 24 - Что такое массивы. Одномерный массив. Примеры/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 24 - Что такое массивы. Одномерный массив. Примеры")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 24 - Что такое массивы. Одномерный массив. Примеры")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("46607273-7be4-41a6-90e5-acfc1479a9ac")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
53
LessonsAndTasks/Lesson 25 - Инициализация массива. Способы/25_Lesson - Инициализация массива. Способы.csproj
Normal file
53
LessonsAndTasks/Lesson 25 - Инициализация массива. Способы/25_Lesson - Инициализация массива. Способы.csproj
Normal file
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{F1F3121A-C3D9-46DB-A69E-CF810CD8A362}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_25___Инициализация_массива.Способы</RootNamespace>
|
||||
<AssemblyName>Lesson_25___Инициализация_массива.Способы</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
* Массивы
|
||||
*
|
||||
* Одномерные массивы
|
||||
*
|
||||
* Способы инициализации массива
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int[] myArray_1 = new int[5] { 5, 6, 7, 8, 9 };
|
||||
int[] myArray_2 = new int[] { 5, 6, 7, 8 };
|
||||
int[] myArray_3 = new[] { 5, 6, 7, 8 };
|
||||
int[] myArray_4 = { 5, 6, 7, 8 };
|
||||
int[] myArray_5 = Enumerable.Repeat(5, 10).ToArray();
|
||||
int[] myArray_6 = Enumerable.Range(4, 5).ToArray();
|
||||
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 25 - Инициализация массива. Способы/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 25 - Инициализация массива. Способы/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 25 - Инициализация массива. Способы")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 25 - Инициализация массива. Способы")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("f1f3121a-c3d9-46db-a69e-cf810cd8a362")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C0D360CD-3C06-45CC-A0B0-4A5AC0783320}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_26___Вывод_массива.Перебор_массива.Массивы_и_циклы</RootNamespace>
|
||||
<AssemblyName>Lesson_26___Вывод_массива.Перебор_массива.Массивы_и_циклы</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
6
LessonsAndTasks/Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы/App.config
Normal file
6
LessonsAndTasks/Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
66
LessonsAndTasks/Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы/Program.cs
Normal file
66
LessonsAndTasks/Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы/Program.cs
Normal file
@ -0,0 +1,66 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
* Массивы и циклы
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int[] myArray = { 10, 3, 2, 55 };
|
||||
|
||||
for (int i = 0; i < myArray.Length; i++)
|
||||
{
|
||||
Console.WriteLine(myArray[i]);
|
||||
}
|
||||
|
||||
Console.ReadLine();
|
||||
|
||||
#region TASK №1 - заполнить массив с клавиатуры
|
||||
Console.Write("Введите числа массива через пробел: ");
|
||||
string str = Console.ReadLine();
|
||||
int lenght = str.Where(c => c == ' ').Count();
|
||||
int[] arrayTask_1 = new int[lenght + 1];
|
||||
|
||||
int index = 0;
|
||||
string tmpStr = "";
|
||||
for (int i = 0; i < str.Length; i++)
|
||||
{
|
||||
tmpStr += str[i];
|
||||
if (str[i].ToString().Contains(" ") || i == (str.Length - 1))
|
||||
{
|
||||
arrayTask_1[index] = int.Parse(tmpStr);
|
||||
index++;
|
||||
tmpStr = "";
|
||||
}
|
||||
}
|
||||
Console.ReadLine();
|
||||
#endregion
|
||||
#region TASK №2 - вывести массив в обратном порядке
|
||||
Console.WriteLine("вывести массив в обратном порядке");
|
||||
for (int i = arrayTask_1.Length - 1; i >= 0; i--)
|
||||
{
|
||||
Console.Write(arrayTask_1[i] + " ");
|
||||
}
|
||||
Console.ReadLine();
|
||||
#endregion
|
||||
#region TASK №3 - найти сумму четных элементов
|
||||
Console.WriteLine("найти сумму четных элементов");
|
||||
int even = 0;
|
||||
for (int i = 0; i < arrayTask_1.Length; i++)
|
||||
{
|
||||
if (arrayTask_1[i] % 2 == 0)
|
||||
even += arrayTask_1[i];
|
||||
}
|
||||
Console.WriteLine($"Сумма четных равна {even}");
|
||||
Console.ReadLine();
|
||||
#endregion
|
||||
#region TASK №4 - найти наименьшее число в массиве
|
||||
Console.WriteLine("найти наименьшее число в массиве:");
|
||||
Console.WriteLine(arrayTask_1.Min());
|
||||
#endregion
|
||||
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 26 - Вывод массива. Перебор массива. Массивы и циклы")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("c0d360cd-3c06-45cc-a0b0-4a5ac0783320")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
53
LessonsAndTasks/Lesson 27 - Как работать с массивами на самом деле/27_Lesson - Как работать с массивами на самом деле.csproj
Normal file
53
LessonsAndTasks/Lesson 27 - Как работать с массивами на самом деле/27_Lesson - Как работать с массивами на самом деле.csproj
Normal file
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{027E7BEF-CE49-4672-93CD-9F3F4471B92A}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Lesson_27___Как_работать_с_массивами_на_самом_деле</RootNamespace>
|
||||
<AssemblyName>Lesson 27 - Как работать с массивами на самом деле</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||
</startup>
|
||||
</configuration>
|
@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
/*
|
||||
* как работать с массивами на самом деле
|
||||
*/
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
int[] myArray = { 111, 10, 4, 99, 49, 64, 99, 4, 42, 5 };
|
||||
int value_0 = myArray.Min();
|
||||
int[] value_1 = myArray.Where(i => i % 2 != 0).ToArray(); //Перебор по нужному условию
|
||||
Console.WriteLine(value_1);
|
||||
int[] result = myArray.Distinct().ToArray(); //Только уникальные
|
||||
int[] result_1 = myArray.OrderBy(i => i).ToArray(); //Сортировка
|
||||
Array.Sort(myArray);
|
||||
Array.Find(myArray, i => i < 70);
|
||||
Array.FindLast(myArray, i => i < 70);
|
||||
int[] result_2 = Array.FindAll(myArray, i => i < 70);
|
||||
int result_3 = Array.FindIndex(myArray, i => i == 70);
|
||||
Array.Reverse(myArray);
|
||||
int result_4 = myArray.Where(i => i < 70).FirstOrDefault(); //Первое число меньше 70
|
||||
Console.ReadKey();
|
||||
}
|
||||
}
|
36
LessonsAndTasks/Lesson 27 - Как работать с массивами на самом деле/Properties/AssemblyInfo.cs
Normal file
36
LessonsAndTasks/Lesson 27 - Как работать с массивами на самом деле/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// Общие сведения об этой сборке предоставляются следующим набором
|
||||
// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
|
||||
// связанные со сборкой.
|
||||
[assembly: AssemblyTitle("Lesson 27 - Как работать с массивами на самом деле")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lesson 27 - Как работать с массивами на самом деле")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
|
||||
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
|
||||
// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
|
||||
[assembly: Guid("027e7bef-ce49-4672-93cd-9f3f4471b92a")]
|
||||
|
||||
// Сведения о версии сборки состоят из следующих четырех значений:
|
||||
//
|
||||
// Основной номер версии
|
||||
// Дополнительный номер версии
|
||||
// Номер сборки
|
||||
// Редакция
|
||||
//
|
||||
// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
|
||||
// используя "*", как показано ниже:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
9
LessonsAndTasks/Lesson 28 - Индексы и диапазоны/28_Lesson - Индексы и диапазоны.csproj
Normal file
9
LessonsAndTasks/Lesson 28 - Индексы и диапазоны/28_Lesson - Индексы и диапазоны.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<RootNamespace>Lesson_28___Индексы_и_диапазоны</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user