您有两种选择:
导入脚本文件顶部的命名空间:
using System.Text;
使用完全限定的类名:
byte[] data = System.Text.Encoding.ASCII.GetBytes(s);