12345678910111213141516171819202122232425 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 Jiang Yin. All rights reserved.
- // Homepage: https://gameframework.cn/
- // Feedback: mailto:ellan@gameframework.cn
- //------------------------------------------------------------
- using System;
- namespace MetaClient
- {
- public static class WebUtility
- {
- public static string EscapeString(string stringToEscape)
- {
- return Uri.EscapeDataString(stringToEscape);
- }
- public static string UnescapeString(string stringToUnescape)
- {
- return Uri.UnescapeDataString(stringToUnescape);
- }
- }
- }
|