在學校裏的功課,我們有這樣的例子:字符串格式作爲參數?
它告訴我創建一個名爲public abstract method
與ToString
字符串格式參數,它返回一個string
。這怎麼可能?
我嘗試這樣做:
public abstract string ToString(String.Format type)
{
return "Some text";
}
但它返回的一些誤區:
The type or namespace name 'Format' could not be found (are you missing a using directive or an assembly reference?)
'Shape.ToString(string, Format)' cannot declare a body because it is marked abstract
我怎樣才能解決這個問題?
'abstract'方法不能有body ..'public abstract string ToString(String.Format type);'只會有效。 –
連同@BagusTesa所說的參數被命名爲格式,但是在圖像中是類型'string'。所以這將是'公共抽象字符串ToString(字符串格式);' – Lithium
好努力,但你只是誤讀spec +1試試 – WhatsThePoint