Skip to content

String转Byte数组

tanyuan edited this page Sep 19, 2017 · 2 revisions

using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Services.Neo;

public class HelloWorld : SmartContract
{
    public static byte[] Main()
    {
        return "hello".AsByteArray();
    }
}
Clone this wiki locally