我想生成一個json字符串,但是 我做了什麼是錯誤的?爲什麼這個代碼引發未處理的異常VB.NET String.Format FormatException未處理
Public Function GenerateJsonString(doer As Integer, comment As String, id As Integer) As String
Dim jsonString As String = String.Format("{done_by:{0}, comment:{1}, request_id:{2}}", doer, comment, id)
Return jsonString
End Function
型「System.FormatException」未處理的異常出現在mscorlib.dll
其他信息:輸入字符串的不正確的格式。
分享你的所有代碼 – Developer
看到我的更新,我已經過去了我所有的功能代碼。 –