From 342e459f4f5f79285ac76ea5f23df7b8602d4397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=AF=BC=EC=84=9C?= Date: Tue, 27 Feb 2024 14:28:48 +0900 Subject: [PATCH] =?UTF-8?q?client=EC=97=90=EC=84=9C=20server=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=EB=A5=BC=20=EC=82=AD=EC=A0=9C=ED=95=98?= =?UTF-8?q?=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/Git/XlsxToJson.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Server/Git/XlsxToJson.cs b/Server/Git/XlsxToJson.cs index 437c69e..22cf70d 100644 --- a/Server/Git/XlsxToJson.cs +++ b/Server/Git/XlsxToJson.cs @@ -31,7 +31,14 @@ namespace Server.Git break; case "all": string name = sheets[m].name; - Dictionary> clientSheet = new Dictionary>(sheets[m].dicViewer); + Dictionary> clientSheet = new Dictionary>(); + + foreach (KeyValuePair> item in sheets[m].dicViewer) + { + clientSheet.Add(item.Key, new Dictionary(item.Value)); + } + + for (int i = 1; i < sheets[m].dataEnum.Count; i++) { if (sheets[m].dataEnum[i] == "server")