編譯器錯誤 CS1015
必須是物件、字串或類別類型。
已嘗試將預先定義的資料類型傳遞到 catch 區塊。 只有衍生自 System.Exception 的資料類型才能傳遞至 catch
區塊。 如需例外狀況的詳細資訊,請參閱例外狀況和例外狀況處理。
下列範例會產生 CS1015:
// CS1015.cs
class Sample
{
static void Main()
{
try
{
}
catch(int) // CS1015, int is not derived from System.Exception
{
}
}
}