using UnityEngine;
using System.Collections;
using System.Collections.Generic;


List<byte> encodeChars=new List<byte>(64); string chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; for(int i=0;i<64;i++){ char[] sub=chars.ToCharArray(i,1); byte[] bytes=System.Text.Encoding.Unicode.GetBytes(sub); encodeChars.Add(bytes[0]); Debug.Log(encodeChars[i]); }

 

相关文章:

  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2021-11-09
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-02
  • 2021-05-31
  • 2021-11-09
  • 2021-09-21
相关资源
相似解决方案