mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 统一调整代码注释的缩进格式,保持文档注释的一致性 - 简化对象初始化语法,移除不必要的参数名称指定 - 优化条件语句结构,移除多余的花括号 - 调整方法实现格式,使用表达式主体语法简化代码 - 标准化代码缩进和空格使用,提升代码可读性 - [skip ci]
11 lines
321 B
C#
11 lines
321 B
C#
// IsExternalInit.cs
|
|
// This type is required to support init-only setters and record types
|
|
// when targeting netstandard2.0 or older frameworks.
|
|
|
|
#pragma warning disable S2094 // Remove this empty class
|
|
namespace System.Runtime.CompilerServices;
|
|
|
|
internal static class IsExternalInit
|
|
{
|
|
}
|
|
#pragma warning restore S2094 |