Skip to content

Byte数组转String

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 string Main()
    {
        return Storage.Get(Storage.CurrentContext, "Hello").AsString();
    }
}
Clone this wiki locally