From 49658c25f164f9122628e39aa92aecfa6c933728 Mon Sep 17 00:00:00 2001 From: Elivo Date: Mon, 27 Oct 2025 15:22:34 +0800 Subject: [PATCH] =?UTF-8?q?TextUtility=EF=BC=9A=E4=BF=AE=E6=AD=A3=20Lock?= =?UTF-8?q?=20=E6=96=B9=E6=B3=95=E7=9A=84=E5=8F=82=E6=95=B0=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Apewer/TextUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apewer/TextUtility.cs b/Apewer/TextUtility.cs index d065d05..aa41f64 100644 --- a/Apewer/TextUtility.cs +++ b/Apewer/TextUtility.cs @@ -1081,7 +1081,7 @@ namespace Apewer /// 要锁定的文本。 /// 要在锁中执行的函数。 /// - public static void Lock(this string text, Action inLock) + public static void Lock(this string text, Action inLock) { if (inLock == null) throw new ArgumentNullException(nameof(inLock)); _locker.InLock(text, inLock);