的大小我有下面的代碼大於或等於零且小於:錯誤索引(從零開始)必須大於參數列表
a = "Return {1}"
ItalicsCloseTag = "</i>";
ItalicsOpenTag = "<i>";
b = "Delete {0}?"
c = string.Format(b, string.Concat(ItalicsOpenTag, HttpUtility.HtmlEncode(a), ItalicsCloseTag));
我得到以下錯誤上述聲明。
System.FormatException was unhandled by user code
Additional information: Index (zero based) must be greater than or equal to zero and less than the size of the argument list.
我試着用
b = "Delete {{{0}}}?"
,並得到出現FormatException異常,並
b = "Delete {{0}}?"
,拿出放爲 「刪除{0}?」
幫助?我基本上是在尋找聲明來輸出'刪除返回{1}?'
你打算在這裏發生什麼? –
這不是有效的代碼(定義在哪裏),***我得到一個錯誤***太模糊。閱讀[ask] – Amit
「我在上述聲明中遇到錯誤。」 >我不知道。請澄清*你得到了什麼*錯誤。其次:你的代碼不能編譯。 –