neo-decompiler 0.11.0

Neo N3 NEF decompiler: parse, disassemble, lift bytecode to high-level pseudocode and C# skeletons, with a CLI, JSON reports, and optional WebAssembly bindings.
Documentation
using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Attributes;
using Neo.SmartContract.Framework.Services;

namespace Examples
{
    [ManifestExtra("Author", "neo-decompiler")]
    [ManifestExtra("Email", "dev@example.com")]
    [ManifestExtra("Description", "Minimal example contract for neo-decompiler walkthrough.")]
    public class HelloWorld : SmartContract
    {
        public static string Main()
        {
            return "hello, neo!";
        }

        public static void Notify(string message)
        {
            Runtime.Notify(message);
        }
    }
}