Archived
1
0

Initial commit

This commit is contained in:
2025-10-24 17:19:46 +08:00
commit acc0c9e220
155 changed files with 77369 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36511.14 d17.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp2", "ConsoleApp2.csproj", "{C61BF32F-EC0F-48B0-B514-18462DED7562}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C61BF32F-EC0F-48B0-B514-18462DED7562}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C61BF32F-EC0F-48B0-B514-18462DED7562}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C61BF32F-EC0F-48B0-B514-18462DED7562}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C61BF32F-EC0F-48B0-B514-18462DED7562}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {825C2312-56B9-4680-87A4-C125E27172D5}
EndGlobalSection
EndGlobal

14
ConsoleApp2/Program.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
namespace d.d
{
class A2
{ static void Main()
{
bool b1 = true;
//bool b2 = false;
char c = '0';
bool b3 = (c > 64 && c < 123);
Console.WriteLine("{0}\t{1}", b1, b3);
}
}
}