編譯器錯誤 CS1908
更新:2007 年 11 月
錯誤訊息
DefaultValue 屬性的引數型別和參數型別必須相符
當您使用錯誤的 DefaultValueAttribute 屬性值引數時會產生這個錯誤。請使用符合參數型別的值。
範例
下列範例會產生 CS1908。
// CS1908.cs
// compile with: /target:library
using System.Runtime.InteropServices;
public interface ISomeInterface
{
void Bad([Optional] [DefaultParameterValue("true")] bool b); // CS1908
void Good([Optional] [DefaultParameterValue(true)] bool b); // OK
}