feat: Finish Iteration
All checks were successful
Tests / Unit Testing1 (push) Successful in 43s

This commit is contained in:
2023-11-02 18:23:52 +01:00
parent a00e84e111
commit de2eb52756
9 changed files with 99 additions and 4 deletions

3
Stream/Program.cs Normal file
View File

@ -0,0 +1,3 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

10
Stream/Stream.cs Normal file
View File

@ -0,0 +1,10 @@
namespace Stream;
using System.IO;
public class Stream
{
public static bool ExistFile(string path)
{
return File.Exists(path);
}
}

10
Stream/Stream.csproj Normal file
View File

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