영어로 읽기

다음을 통해 공유


컴파일러 오류 CS1908

DefaultParameterValue 특성에 대한 인수 형식이 매개 변수 형식과 일치해야 합니다.

이 오류는 잘못된 형식의 값을 DefaultParameterValueAttribute에 전달할 때 생성됩니다. 특성 인수의 형식이 대상 매개 변수의 형식과 일치하는지 확인합니다.

예시

다음 샘플에서는 CS1908을 생성합니다.

// 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
}