This commit is contained in:
3
Stream/Program.cs
Normal file
3
Stream/Program.cs
Normal 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
10
Stream/Stream.cs
Normal 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
10
Stream/Stream.csproj
Normal 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>
|
Reference in New Issue
Block a user