Esempio n. 1
0
        public void ArrayTest()
        {
            String s1    = env.NewString("test");
            Class  clazz = s1.getClass();

            Method[] methods = clazz.getMethods();
            Assert.Greater(methods.Length, 20);
            foreach (Method method in methods)
            {
                Class returnType = method.getReturnType();
                Console.WriteLine(method + " " + returnType);
            }
        }