I'm trying to use extension method, but the method is defined twice with same name.
Let's say A.Extensions.Ext()
and B.Extensions.Ext()
I need both references in my class and when trying
using A.Extensions;
using B.Extensions;
class C
{
public void Main()
{
somevalue.Ext();
}
}
I want to somehow define which method to use and I don't know how to do that. Thanks for help!