private static bool ReturnBool(string[] args, TryCatchMethods instance)
 {
     return true;
 }
示例#2
0
 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;
 }
示例#4
0
        public object MethodWithTernaryOperatorAtTheEndAndTwoRetOpCodesNoWeave(string[] args)
        {
            var instance = new TryCatchMethods();

            return(ReturnBool(args, instance) ? null : instance);
        }