private static bool ReturnBool(string[] args, TryCatchMethods instance) { return true; }
private static bool ReturnBool(string[] args, TryCatchMethods instance) { return(true); }
public object MethodWithTernaryOperatorAtTheEndAndTwoRetOpCodesNoWeave(string[] args) { var instance = new TryCatchMethods(); return ReturnBool(args, instance) ? null : instance; }
public object MethodWithTernaryOperatorAtTheEndAndTwoRetOpCodesNoWeave(string[] args) { var instance = new TryCatchMethods(); return(ReturnBool(args, instance) ? null : instance); }