Anyone care to explain why these two pieces of code exhibit different results?
VB.NET v4.0
Dim p As Integer = 16
Dim i As Integer = 10
Dim y As Integer = p / i
//Result: 2
C# v4.0
int p = 16;
int i = 10;
int y = p / i;
//Result: 1
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you look at the IL-code that those two snippets produce, you’ll realize that VB.NET first converts the integer values to doubles, applies the division and then rounds the result before it’s converted back to int32 and stored in y.
C# does none of that.
VB.NET IL Code:
C# IL Code:
The “proper” integer division in VB needs a backwards slash: p \ i