From e595762ac57327f4f4179be734f41806e7e65bac Mon Sep 17 00:00:00 2001 From: RythonDev <50455574+liyunze-coding@users.noreply.github.com> Date: Tue, 19 May 2026 10:09:06 +1000 Subject: [PATCH] Fix GetGlobalVar usage Explicitly provide `` to CPH.GetGlobalVar for compilation. --- streamerbot/3.api/3.csharp/0.guide/1.variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamerbot/3.api/3.csharp/0.guide/1.variables.md b/streamerbot/3.api/3.csharp/0.guide/1.variables.md index 4095d23f..7834a827 100644 --- a/streamerbot/3.api/3.csharp/0.guide/1.variables.md +++ b/streamerbot/3.api/3.csharp/0.guide/1.variables.md @@ -147,7 +147,7 @@ string jsonSaveString = JsonConvert.SerializeObject(testList); CPH.SetGlobalVar("savingClass", jsonSaveString, true); //... Deserializing saved JSON string -string savedString = CPH.GetGlobalVar("savingClass", true); +string savedString = CPH.GetGlobalVar("savingClass", true); List savedList = JsonConvert.DeserializeObject>(savedString); ```