大约有 10,900 项符合查询结果(耗时:0.0354秒) [XML]
Difference between Visual Basic 6.0 and VBA
...ortening the development cycle of custom business solutions.
Note that VB.NET is even another language, which only shares syntax with VB.
share
|
improve this answer
|
follo...
Why is there a difference in checking null against a value in VB.NET and C#?
In VB.NET this happens:
7 Answers
7
...
Is VB really case insensitive?
...
The difference between VBA and VB.NET is just because VB.NET compiles continuously in the background. You'll get an error when you compile the VBA.
Like Jonathan says, when programming you can think of VB.NET as case-insensitive apart from string-comparisons...
Is there a VB.NET equivalent of C# out parameters?
Does VB.NET have a direct equivalent to C# out function parameters, where the variable passed into a function does not need to be initialised?
...
Mixing C# & VB In The Same Project
...are all compiled to CIL.
It compiled fine and didn't complain because a VB.NET project will only actually compile the .vb files and a C# project will only actually compile the .cs files. It was ignoring the other ones, therefore you did not receive errors.
Edit: If you add a .vb file to a C# project...
Is there a conditional ternary operator in VB.NET?
...
Depends upon the version. The If operator in VB.NET 2008 is a ternary operator (as well as a null coalescence operator). This was just introduced, prior to 2008 this was not available. Here's some more info: Visual Basic If announcement
Example:
Dim foo as String = If...
Inline list initialization in VB.NET [duplicate]
How is the following C# code translated to VB.NET?
2 Answers
2
...
VB.NET equivalent to C# var keyword [duplicate]
Is there a VB.NET equivalent to the C# var keyword?
4 Answers
4
...
Classes vs. Modules in VB.NET
...ctice to use Modules instead of Classes with Shared member functions in VB.NET?
8 Answers
...
Multiline strings in VB.NET
Is there a way to have multiline strings in VB.NET like Python
21 Answers
21
...