# LearnCSharp **Repository Path**: dream_zhou/LearnCSharp ## Basic Information - **Project Name**: LearnCSharp - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-05-14 - **Last Updated**: 2025-11-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 个人 C# 学习 # 创建项目 ```shell dotnet new console -n Finalizers ``` # 将 project 添加到 解决方案 ```shell dotnet sln LearnCSharp.sln add ./14_Exception/SimpleException/SimpleException.csproj ``` # 编译 ```shell dotnet build ``` # 直接运行 ```shell dotnet run ``` # ```shell # 安装 upgrade-assistant dotnet tool install -g upgrade-assistant # 升级项目 upgrade-assistant upgrade ```