C# template

master
Baltazár Radics 2020-09-24 18:09:08 +02:00
parent e0d81d00d0
commit d1e40ee119
Signed by: baltazar
GPG Key ID: 9440F591E4397C3E
3 changed files with 28 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
bin/
obj/

18
Program.cs 100644
View File

@ -0,0 +1,18 @@
using System;
class Program {
static void Main(string[] args) {
// 1.
{
}
// 2.
{
}
// 3.
{
}
// 4.
{
}
}
}

8
for_loop.csproj 100644
View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>