[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/pythonnet/pythonnet/net8.0/src/testing/InheritanceTest.cs [Back]  [Original]

using System;

namespace Python.Test
{
    public class BaseClass
    {
        public bool IsBase() => true;
    }

    public class DerivedClass : BaseClass
    {
        public new bool IsBase() => false;
    }
}

Web Proxy Viewer  |  New URL  |  Original Page