| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Dmitry Lomov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build | |
| Build |
815
|
| Fixed in build |
900
|
RSRP-70887 |
error CS0121: The call is ambiguous between the following methods or properties: 'A.Foo(int, object)' and 'A.Foo(object, string)' |
|
|
using System;
class A
{
static extern void Foo(int x, object y);
static extern void Foo(object x, string y);
static extern void Bar(Action<int, string> x);
static void Main()
{
Bar(Foo);
}
}