![]() |
How to convert this
Can any c# programmer expert help me to convert this vb.net code to c# code
Dim MyItem = ListViewBookRecord.Items.Add(dr("ID".ToString)) With MyItem .SubItems.Add(dr("bookname".ToString)) .SubItems.Add(dr("authorname".ToString)) .SubItems.Add(dr("booktype".ToString)) .SubItems.Add(dr("price".ToString)) End With Dim SaveOrEdit As String = "" Dim Apppath = Application.StartupPath Dim DatabasePath = Apppath & "\..\bookrecord.mdb;" Dim ConnString As String = _ "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & DatabasePath & _ "Persist Security Info=False" |
Re: How to convert this
I am not sure what is ListViewBookRecord but the C# code would be like
Code: C#
|
Re: How to convert this
It give me the error:
"The type or namespace name 'ReturnTypeOfAddMethod' could not be found (are you missing a using directive or an assembly reference?)" |
Re: How to convert this
I mentioned the reason for the above error also.
Quote:
|
| All times are GMT +5.5. The time now is 13:46. |