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]); }

 

相关文章:

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