From 3f638454f1658dd9a86b2cca4e7082b6647776bc Mon Sep 17 00:00:00 2001 From: MickeyShiue Date: Wed, 12 Jan 2022 11:40:57 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9Aupdate=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit line 1004 return string --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aaeb3b..342b638 100644 --- a/README.md +++ b/README.md @@ -1001,7 +1001,7 @@ class Configuration _configuration = configuration; } - public string[] Get(string key) + public string Get(string key) { return _configuration.ContainsKey(key) ? _configuration[key] : null; }