提交功能

This commit is contained in:
Bob.Song
2026-02-08 16:58:32 +08:00
commit 9dd1e6c278
67 changed files with 4588 additions and 0 deletions

64
JSON/JSON.cs Normal file
View File

@@ -0,0 +1,64 @@
// MIT License
//
// Copyright (c) 2020-2023 BobSong, nobug.cn Co.,Ltd and Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
using System.Text.Json;
namespace ACBuildService;
/// <summary>
/// JSON 静态帮助类
/// </summary>
public static class JSON
{
/// <summary>
/// 序列化对象
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public static string Serialize(object value)
{
return JsonSerializer.Serialize(value);
}
/// <summary>
/// 反序列化字符串
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="json"></param>
/// <returns></returns>
public static T Deserialize<T>(string json)
{
return JsonSerializer.Deserialize<T>(json);
}
/// <summary>
/// 反序列化字符串
/// </summary>
/// <param name="type"></param>
/// <param name="json"></param>
/// <returns></returns>
public static object Deserialize<T>(Type type, string json)
{
return JsonSerializer.Deserialize(json, type);
}
}