第一,
public static bool IsOdd(int n){ return (n % 2 == 1) ? true : false;} 第二,public static bool IsOdd(int n){ return Convert.ToBoolean(n % 2);}