public static bool Create()
 {
     NewObjectTests d = new NewObjectTests();
     return d != null;
 }
 public static bool CreateAndCallMethod()
 {
     NewObjectTests d = new NewObjectTests();
     return d.Test() == 5;
 }
Exemple #3
0
        public static bool Create()
        {
            NewObjectTests d = new NewObjectTests();

            return(d != null);
        }
Exemple #4
0
        public static bool CreateAndCallMethod()
        {
            NewObjectTests d = new NewObjectTests();

            return(d.Test() == 5);
        }
Exemple #5
0
 public static bool WithoutArgs()
 {
     NewObjectTests d = new NewObjectTests();
     return d != null;
 }