什么对Excel支持比较好? (VB.net 或 C#.net ??)
我需要使用 Excel 工作表来实现报告,并且需要大量繁重的 Excel 工作。 所以..
我有两个选择.. C#.net 或 VB.net !!
什么更接近EXCEL? 什么可以为我提供更多 excel api 和更多控制?
请帮忙!
I need to implement reporting.. with Excel sheets and need a lot of heavy excel workings..
So..
I have two options..
C#.net or VB.net !!
What would be more closer to EXCEL ?
What would provide me more excel api's and more control ?
Please Help !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
C# 和 VB.NET 都允许您编写同样适合 .NET 的代码。您可以使用任一语言来处理 Excel 互操作库。在使用 Excel 时,一种语言确实比另一种语言没有优势。
Both C# and VB.NET allow you to write code that targets .NET equally well. You can use either language to work with the Excel interop libraries. There really is no advantage to one language over the other for working with Excel.
C# 和 vb.net 都是 .net 语言,因此它们可以让您平等地访问任何 excel/office API,因为任何可以链接到 C# 的内容也可以链接到 vb.net
vb 更接近于 excel 宏中使用的 vba 语言,但就我个人而言,我总是更喜欢 C#。如果您习惯使用 vba,vb.net 可能是您的正确选择,因为您知道语法。
C# and vb.net are both .net languages so they would give you equal access to any excel/office APIs since anything that can be linked to C# also could be linked to vb.net
vb is closer to thr vba language used in excel macros, but personally I would always prefer C#. If you are used to vba vb.net would probably be the right choice for you since you then know the syntax.