我和Umbraco / uCommerce有一个奇怪的错误,我建立了一个支持库,突然之间我发现了一个阻止编译的奇怪错误。
错误9以下方法或之间的调用不明确 特性: ' uCommerce_Boilerplate.Web.Controllers.ExtensionFunctions.ToDescription(System.Enum)' 和 ' 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());
}
}
}
答案 0 :(得分:2)
您可能在程序集引用中有一个循环引用,这就是方法调用突然不明确的原因。
正如您在问题评论中所描述的那样,您自己使用了该程序集中的UserControls
,VS Designer可能已将UserControl's
包含程序集的引用添加到自身,因为这有时会发生您使用VS工具箱中的UserControl
。