Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardC#IL and the JIT compilerSingle-choice MCQ

What does this method's return value depend on, given how the JIT performs constant folding and method inlining of small property/method bodies?

static bool IsNaNish(double x) { return !(x == x); }