当前位置:主页 > 软件编程 > .NET代码 >

C#最简单的字符串加密解密方法

时间:2021-03-15 09:53:04 | 栏目:.NET代码 | 点击:

public static string encode(string str)
    {
      string htext = "";
 
      for (int i = 0; i < str.Length; i++)
      {
        htext = htext + (char)(str[i] + 10 - 1 * 2);
      }
      return htext;
    }
 
    public static string decode(string str)
    {
      string dtext = "";
 
      for (int i = 0; i < str.Length; i++)
      {
        dtext = dtext + (char)(str[i] - 10 + 1 * 2);
      }
      return dtext;
    }

您可能感兴趣的文章:

相关文章