>
1. Getting started
2. Calling methods
3. Working with .NET Objects
4. Fields and Properties
5. Methods Arguments
6. Nested Types
7. Enums
8. Arrays and Collections
9. Embeding UI controls
10. Referencing libraries
11. Off-line activation
12. Events and Delegates
13. Disposing and Garabage Collection
14. .NET Configuration Files (AppConfig, WebConfig)
15. Exceptions, Debugging and Testing
16. Strongly-Typed Wrappers
    17. Advanced Activation and Licensing
    18 Other usage scenarios

      Invoking Static Methods

      To invoke the static method, first get the particular .NET type and call invoke providing method arguments.

      Example how to call static method “Show” on “MessageBox”

        Javonet.getType("MessageBox").invoke("Show","Hello Javonet!");

      The invoke method allows you to call any .NET static or instance method with or without arguments. Value-type arguments are automatically translated to appropriate .NET types, and you can also pass referenced arguments as explained later in this guide.

      See Live Example!