Browse Source

Добавьте файлы проекта.

Idiots Wolf 2 years ago
parent
commit
1070b8bd78
5 changed files with 82 additions and 0 deletions
  1. 25 0
      var3.sln
  2. 24 0
      var3/Class1.cs
  3. 14 0
      var3/Debugcs.cs
  4. 9 0
      var3/Program.cs
  5. 10 0
      var3/var3.csproj

+ 25 - 0
var3.sln

@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.2.32526.322
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "var3", "\main\RDP\31П\МалевАВ\Desktop\Malev.PM02\var3\var3\var3.csproj", "{50DFD7D3-FE79-4A6B-AF55-4513EEBDB9C6}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{50DFD7D3-FE79-4A6B-AF55-4513EEBDB9C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{50DFD7D3-FE79-4A6B-AF55-4513EEBDB9C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{50DFD7D3-FE79-4A6B-AF55-4513EEBDB9C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{50DFD7D3-FE79-4A6B-AF55-4513EEBDB9C6}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {8D316261-0A81-4E78-A67E-AB82FB400140}
+	EndGlobalSection
+EndGlobal

+ 24 - 0
var3/Class1.cs

@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Diagnostics;
+using System.IO;
+
+namespace var3
+{
+    internal class Class1
+    {
+        public static void read()
+        {
+            string data = "data.txt";
+            string[] da = new string[400];
+            da = File.ReadAllLines(data);
+            for (int i = 0; i < da.Length; i++)
+            {
+                Console.WriteLine(da[i]);
+            }
+        }
+    }
+}

+ 14 - 0
var3/Debugcs.cs

@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Diagnostics;
+using System.IO;
+
+namespace var3
+{
+    internal class Debugcs
+    {
+    }
+}

+ 9 - 0
var3/Program.cs

@@ -0,0 +1,9 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Diagnostics;
+using System.IO;
+
+

+ 10 - 0
var3/var3.csproj

@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>net6.0</TargetFramework>
+    <ImplicitUsings>enable</ImplicitUsings>
+    <Nullable>enable</Nullable>
+  </PropertyGroup>
+
+</Project>