2014-03-05 66 views
-3

我不知道是什麼問題,但我想要做的是從一個派生類的無效令牌「基地」類,結構或接口成員聲明

錯誤傳遞參數基本構造:

Invalid token 'base' in class, struct, or interface member declaration

這裏是我base class code:

public class EmployeeRegistrationBase 
{ 
    //constructor 
    public EmployeeRegistrationBase(string methodName) 
    { 
     //more code... 
    } 
} 

這裏是我的derived class:

public class USER_REG_LOG_INFO : base(EmployeeRegistrationBase("some_method_name")) 
{ 
    //more code.... 
} 
+1

你應該使用'base'在構造函數.... –

+0

這不是有效的語法。你想做什麼? – RBarryYoung

回答

2

您的繼承和構造函數直通語法不正確。試試這個:

public class USER_REG_LOG_INFO : EmployeeRegistrationBase 
{ 
    public USER_REG_LOG_INFO() : base("some_method_name") 
    { 
    } 

    //more code.... 
} 
相關問題