neo-project / neo-devpack-dotnet

NEO Development Pack
MIT License
79 stars 100 forks source link

Fix nullable type #1086

Closed Jim8y closed 1 month ago

Jim8y commented 1 month ago

this pr fixes https://github.com/neo-project/neo-devpack-dotnet/pull/1085

Jim8y commented 1 month ago
    public abstract void TestBigInteger(object? a = null);
    public abstract void TestBool(object? a = null);
    public abstract void TestByte(object? a = null);
    public abstract void TestByteArray(byte[]? a);
    public abstract void TestChar(object? a = null);
    public abstract void TestInt(object? a = null);
    public abstract void TestLong(object? a = null);
    public abstract void TestNullableString(string? a);
    public abstract void TestObject(object? a = null);
    public abstract void TestSByte(object? a = null);
    public abstract void TestShort(object? a = null);
    public abstract void TestString(string? a);
    public abstract void TestUInt(object? a = null);
    public abstract void TestUInt160(UInt160? a);
    public abstract void TestUInt160Array(IList<object>? a);
    public abstract void TestUInt256(UInt256? a);
    public abstract void TestUInt256Array(IList<object>? a);
    public abstract void TestULong(object? a = null);
    public abstract void TestUShort(object? a = null);