Tagged Questions
13
votes
2answers
459 views
A Double divided by zero is returning a Divide by Zero error
I am experiencing an unexpected behaviour and was hoping someone could help with some guidance as to what areas to focus an investigation on.
I have two methods, one essentially performs a divide by ...
6
votes
4answers
575 views
Inconsistency in divide-by-zero behavior between different value types
Please consider the following code and comments:
Console.WriteLine(1 / 0); // will not compile, error: Division by constant zero
int i = 0;
Console.WriteLine(1 / i); // compiles, runs, throws: ...
2
votes
10answers
4k views
Divide by zero error, how do I fix this?
C# novice here, when the int 'max' below is 0 I get a divide by zero error, I can see why this happens but how should I handle this when max is 0? position is also an int.
private void ...
1
vote
8answers
162 views
C# - Is it possible to make divide-by-zeros return a number, instead of throwing an exception?
I have an expression that includes divisions, for which some of the denominators are sometimes zero. However, in those cases I would like that division to result in 1, instead of throwing an ...