我有一個string
Lat
有字在裏面,我想存儲它在一個新的string
最後一個字母,但它給我一個錯誤:"cannot implicitly convert "char" to string"
如何將char分配給字符串?
current =Lat[j];
我current
是string
,當我嘗試使用#.ToString
,它給了我另一個錯誤:Cannot convert method group 'ToString' to non-delegate type 'string'. Did you intend to invoke the method?
什麼是當前的VAR的聲明?它是字符串嗎? – Jacek
從問題,@Jacek'current'是一個'string',所以是'Lat'。 'lat [j]'給出一個unicode字符。因此,編譯器會發出錯誤 –
電流串 – Hurrem