Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to override explicit interface methods? #90

Closed
BlueRaja opened this issue Nov 7, 2023 · 1 comment
Closed

How to override explicit interface methods? #90

BlueRaja opened this issue Nov 7, 2023 · 1 comment

Comments

@BlueRaja
Copy link

BlueRaja commented Nov 7, 2023

How do you override a method defined as an explicit interface implementation?

For example:

public interface IMyInterface
{
    bool MyMethod();
}

public class MyClass : IMyInterface
{
    public bool IMyInterface.MyMethod()
    {
        return false;
    }
}

How can we override MyClass.MyMethod? Neither of these work in BepInEx 5.4.21 (HarmonyX 2.7.0):

[HarmonyPatch(typeof(MyClass), "MyMethod")]
[HarmonyPatch(typeof(MyClass), "IMyInterface.MyMethod")]
@BlueRaja
Copy link
Author

BlueRaja commented Nov 7, 2023

I figured it out shortly after posting. It has to be

[HarmonyPatch(typeof(MyClass), "Full.Namespace.Goes.Here.IMyInterface.MyMethod")]

@BlueRaja BlueRaja closed this as completed Nov 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant