1monop(1) General Commands Manual monop(1)
2
3
4
6 monop, monop2 - Mono Class Outline Viewer
7
9 monop [-r:assembly] [--search] class
10
12 -r:assembly
13 Specifies the assembly to use for looking up the type
14
15 -a Renders all of the types in the specified assembly.
16
17 --search, -s, -k
18 Searches through all known assemblies for types containing
19 `class'.
20
21 --refs Prints a list of the referenced assemblies for an assembly.
22 Requires an assembly to be specified with -r:assembly.
23
24 --filter-obsolete, -f
25 Do not show obsolete types and members.
26
27 --declared-only, -d
28 Only show members declared in the type.
29
30 --private, -p
31 Show private members.
32
33 --runtime-version
34 Print runtime version.
35
36 -xa Sets the lookup path to the Xamarin.Android directory. This
37 will load both the mscorlib from there, and search assemblies in
38 that directory.
39
40 -xi Sets the lookup path to the Xamarin.iOS directory. This will
41 load both the mscorlib from there, and search assemblies in that
42 directory.
43
45 Monop is a tool that allows you to view the outline of a class. You can
46 see the signature of each member of the class. Use monop to explore
47 1.0 assemblies, use monop2 to explore 2.0 assemblies.
48
49 The tool takes one option, the class to view. You must specify the full
50 name of the class, including namespace.
51
52 For generic classes, you must specify the generic arguments, for exam‐
53 ple:
54 monop2 'System.Collections.Generic.List`1'
55 The above is the string representation for the List<T> in System.Col‐
56 lections.Generic
57
58 If you are unsure of the full name of the class, you can use the
59 `--search' option to search through all known assemblies.
60
62 Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for
63 details.
64
66 Visit http://www.mono-project.com for details
67
68
69
70 monop(1)