Tags: | Categories: Code Snippets Posted by Vitaly Zayko on 2/24/2010 9:15 PM | Comments (0)

How to quickly determine is given number odd or even? There are several simple methods.

Here is the first one:

 

 public bool IsEven(int i)
 {
     return (i & 1) == 0;
 }

And the second:

 public bool IsEven(int i)
 {
     return (i % 2) == 0;
 }

 

Technorati Tags:
Comments are closed