New test.
[mono.git] / man / monop.1
1 .TH "monop" 1
2 .SH NAME
3 monop \- Mono Class Outline Viewer
4 .SH SYNOPSIS
5 .B monop
6 [-r:assembly] [--search] class
7 .SH OPTIONS
8 .TP
9 .I \-r:assembly
10 Specifies the assembly to use for looking up the type
11 .TP
12 .I \-\-search, \-s, \-k
13 Searches through all known assemblies for types containing `class'.
14 .TP
15 .I \-\-refs
16 Prints a list of the referenced assemblies for an assembly.
17 Requires an assembly to be specified with -r:assembly.
18 .TP
19 .I \-\-filter-obsolete, \-f
20 Do not show obsolete types and members.
21 .TP
22 .I \-\-declared-only, \-d
23 Only show members declared in the type.
24 .TP
25 .I \-\-private, \-p
26 Show private members.
27 .TP
28 .I \-\-runtime\-version
29 Print runtime version.
30 .PP
31 .SH DESCRIPTION
32 Monop is a tool that allows you to view the outline of a class. You can see the
33 signature of each member of the class.
34 .PP
35 The tool takes one option, the class to view. You must specify the full name of the
36 class, including namespace.
37 .PP
38 For generic classes, you must specify the generic arguments, for
39 example:
40 .nf
41 monop2 'System.Collections.Generic.List`1'
42 .fi
43 The above is the string representation for the List<T> in System.Collections.Generic
44 .PP
45 If you are unsure of the full name of the class, you can use the
46 `--search' option to search through all known assemblies.
47 .PP
48 .SH MAILING LISTS
49 Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details.
50 .SH WEB SITE
51 Visit http://www.mono-project.com for details