My assumption is that your code isn't like what you've posted, but is actually something more like this:
int a = 4;
int b = 3;
double result = a / b;
Which, from your VB/VBA experience you'd expect to return 1.25 (repeating) but is actually returning 1.0. The reason for this is that C# has different behaviour with respect to division than VB.
In VB the default type of division is floating-point, so dividing 4 by 3 gives 1.25 even if the two inputs are integers. In C# the division is floating-point if either of the operands are floating point, but if both are integers then integer division is used, i.e.
int a = 4;
int b = 3;
double result = a / b; // integer division converted to double = 1.0
double a = 4.0;
int b = 3;
double result = a / b; // floating point division = 1.25
double a = 4.0;
double b = 3.0;
double result = a / b; // floating point division = 1.25
In VB/VBA terms you can see division with two integers as using VB's integer division operator, \, so when dividing two integers in C# the equivalent VB code would be:
Dim a As Integer
Dim b As Integer
Dim result as Double
a = 1
b = 2
result = a \ b // integer division, converted to double = 1.0
I can see that this difference in behaviour could be confusing when coming from a VB/VBA background, but it's just a different rule.