Compiler Error CS1908
The type of the argument to the DefaultParameterValue attribute must match the parameter type
This error is generated when you pass a value of the wrong type to DefaultParameterValueAttribute. Ensure the type of the attribute argument matches that of the target parameter.
The following sample generates CS1908:
C#
// CS1908.cs
// compile with: /target:library
using System.Runtime.InteropServices;
public interface ISomeInterface
{
void Bad([DefaultParameterValue("true")] bool b); // CS1908
void Good([DefaultParameterValue(true)] bool b); // OK
}
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.
משוב של .NET
.NET הוא פרויקט קוד פתוח. בחר קישור כדי לספק משוב: