This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// 引用的版本 | |
/// 用来转换 [2.1.0.293,3.0)、 (1.1.0.3,2.0]、 5.2 的版本 | |
/// </summary> | |
public class ReferenceVersion | |
{ | |
/// <summary> | |
/// 创建引用版本 | |
/// </summary> | |
/// <param name="version">版本</param> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NuGet install System.Text.Encodings.Web | |
// <PackageReference Include="System.Text.Encodings.Web" Version="4.7.1" /> | |
// using System.Text.Unicode; | |
// UnicodeRange: https://github.com/dotnet/runtime/blob/5372ee9dbe48058ca8d3591763e989d3b2e65581/src/libraries/System.Text.Encodings.Web/src/System/Text/Unicode/UnicodeRange.cs | |
// UnicodeRanges https://github.com/dotnet/runtime/blob/5372ee9dbe48058ca8d3591763e989d3b2e65581/src/libraries/System.Text.Encodings.Web/src/System/Text/Unicode/UnicodeRanges.generated.cs | |
/// <summary> | |
/// 获取字符所在哪个 Unicode 平面 | |
/// </summary> |
OlderNewer