1. Is this true?
2. If it is true, should I manually inline functions like the following?
public static int Min(int x, int y) {
if (x < y) return x;
else return y;
}
public static int Min(int x, int y) {
if (x < y) return x;
else return y;
}