From 468aea65827423aa42425c845eef1c566f973f2f Mon Sep 17 00:00:00 2001 From: Elivo Date: Mon, 5 May 2025 13:07:31 +0800 Subject: [PATCH] =?UTF-8?q?TextUtility=EF=BC=9A=E5=A2=9E=E5=8A=A0=E5=B8=B8?= =?UTF-8?q?=E9=87=8F=20Null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Apewer/TextUtility.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Apewer/TextUtility.cs b/Apewer/TextUtility.cs index e0d964a..fb10acb 100644 --- a/Apewer/TextUtility.cs +++ b/Apewer/TextUtility.cs @@ -33,9 +33,12 @@ namespace Apewer /// LF。 public const string LF = "\n"; - /// 空文本。 + /// 长度为 0 的空字符串。 public const string Empty = ""; + /// 无效指针。 + public const string Null = null; + /// 返回表示指定对象的字符串。 public static string Text(object value) {