Is it possible to convert VBA to C#?

前端 未结 4 1242
予麋鹿
予麋鹿 2020-12-05 11:28

I have a few modules of block of code in VBA to run on few Access databases. I would like to know how I should proceed if I want to convert the coding to C# environment. An

4条回答
  •  粉色の甜心
    2020-12-05 12:24

    Generally, you should be able go convert the code manually. You won't find any automated code converters that will do it.

    That being said, the frameworks which you use to access data are quite different in the C# and VBA worlds (they're even quite different betwween VB.NET and VBA!). So you're going to want to read up on ADO.NET before you get started.

提交回复
热议问题