'The call is ambiguous between the following methods or properties' 在相同的路径上
'The call is ambiguous between the following methods or properties' on identical paths
我在使用 Umbraco/uCommerce 时遇到了一个奇怪的错误,我构建了一个支持库,突然我遇到了一个阻止编译的奇怪错误。
Error 9 The call is ambiguous between the following methods or
properties:
'uCommerce_Boilerplate.Web.Controllers.ExtensionFunctions.ToDescription(System.Enum)'
and
'uCommerce_Boilerplate.Web.Controllers.ExtensionFunctions.ToDescription(System.Enum)'
我有一个包含多个功能的文件,这是提示错误的代码段。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using UCommerce;
using UCommerce.EntitiesV2;
using UCommerce.Infrastructure;
using UCommerce.Transactions;
using UCommerce.Transactions.Payments;
using UCommerce.Transactions.Payments.Dibs;
namespace uCommerce_Boilerplate.Web.Controllers
{
public static class ExtensionFunctions
{
public static string ToDescription(this Enum value)
{
var da = (DescriptionAttribute[])(value.GetType().GetField(value.ToString())).GetCustomAttributes(typeof(DescriptionAttribute), false);
return da.Length > 0 ? da[0].Description : value.ToString();
}
}
public static class SupportLib
{
public enum MethodName
{
[Description("Invoice")] Invoice = 1,
}
public static void RunOrder(MethodName methodName = MethodName.Invoice)
{
// The methodName.ToDescription() is throwing the error
PaymentMethod method = getPaymentMethod(methodName.ToDescription());
}
}
}
您的程序集引用中可能存在循环引用,这就是方法调用突然不明确的原因。
正如您在问题评论中所描述的那样,您已经在该程序集内部使用了 UserControls
,VS 设计器可能已经添加了对包含程序集的 UserControl's
的引用,因为有时这是当您使用 VS 工具箱中的 UserControl
时会发生这种情况。
我在使用 Umbraco/uCommerce 时遇到了一个奇怪的错误,我构建了一个支持库,突然我遇到了一个阻止编译的奇怪错误。
Error 9 The call is ambiguous between the following methods or properties: 'uCommerce_Boilerplate.Web.Controllers.ExtensionFunctions.ToDescription(System.Enum)' and 'uCommerce_Boilerplate.Web.Controllers.ExtensionFunctions.ToDescription(System.Enum)'
我有一个包含多个功能的文件,这是提示错误的代码段。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using UCommerce;
using UCommerce.EntitiesV2;
using UCommerce.Infrastructure;
using UCommerce.Transactions;
using UCommerce.Transactions.Payments;
using UCommerce.Transactions.Payments.Dibs;
namespace uCommerce_Boilerplate.Web.Controllers
{
public static class ExtensionFunctions
{
public static string ToDescription(this Enum value)
{
var da = (DescriptionAttribute[])(value.GetType().GetField(value.ToString())).GetCustomAttributes(typeof(DescriptionAttribute), false);
return da.Length > 0 ? da[0].Description : value.ToString();
}
}
public static class SupportLib
{
public enum MethodName
{
[Description("Invoice")] Invoice = 1,
}
public static void RunOrder(MethodName methodName = MethodName.Invoice)
{
// The methodName.ToDescription() is throwing the error
PaymentMethod method = getPaymentMethod(methodName.ToDescription());
}
}
}
您的程序集引用中可能存在循环引用,这就是方法调用突然不明确的原因。
正如您在问题评论中所描述的那样,您已经在该程序集内部使用了 UserControls
,VS 设计器可能已经添加了对包含程序集的 UserControl's
的引用,因为有时这是当您使用 VS 工具箱中的 UserControl
时会发生这种情况。