3 monop, monop2 \- Mono Class Outline Viewer
6 [-r:assembly] [--search] class
10 Specifies the assembly to use for looking up the type
13 Renders all of the types in the specified assembly.
15 .I \-\-search, \-s, \-k
16 Searches through all known assemblies for types containing `class'.
19 Prints a list of the referenced assemblies for an assembly.
20 Requires an assembly to be specified with -r:assembly.
22 .I \-\-filter-obsolete, \-f
23 Do not show obsolete types and members.
25 .I \-\-declared-only, \-d
26 Only show members declared in the type.
31 .I \-\-runtime\-version
32 Print runtime version.
35 Sets the lookup path to the Xamarin.Android directory. This will
36 load both the mscorlib from there, and search assemblies in that directory.
39 Sets the lookup path to the Xamarin.iOS directory. This will
40 load both the mscorlib from there, and search assemblies in that directory.
43 Monop is a tool that allows you to view the outline of a class. You can see the
44 signature of each member of the class. Use \fImonop\fP to explore 1.0
45 assemblies, use \fImonop2\fP to explore 2.0 assemblies.
47 The tool takes one option, the class to view. You must specify the full name of the
48 class, including namespace.
50 For generic classes, you must specify the generic arguments, for
53 monop2 'System.Collections.Generic.List`1'
55 The above is the string representation for the List<T> in System.Collections.Generic
57 If you are unsure of the full name of the class, you can use the
58 `--search' option to search through all known assemblies.
61 Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details.
63 Visit http://www.mono-project.com for details