Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

monop2(1) [debian man page]

monop(1)						      General Commands Manual							  monop(1)

NAME
monop, monop2 - Mono Class Outline Viewer SYNOPSIS
monop [-r:assembly] [--search] class OPTIONS
-r:assembly Specifies the assembly to use for looking up the type -a Renders all of the types in the specified assembly. --search, -s, -k Searches through all known assemblies for types containing `class'. --refs Prints a list of the referenced assemblies for an assembly. Requires an assembly to be specified with -r:assembly. --filter-obsolete, -f Do not show obsolete types and members. --declared-only, -d Only show members declared in the type. --private, -p Show private members. --runtime-version Print runtime version. DESCRIPTION
Monop is a tool that allows you to view the outline of a class. You can see the signature of each member of the class. Use monop to explore 1.0 assemblies, use monop2 to explore 2.0 assemblies. The tool takes one option, the class to view. You must specify the full name of the class, including namespace. For generic classes, you must specify the generic arguments, for example: monop2 'System.Collections.Generic.List`1' The above is the string representation for the List<T> in System.Collections.Generic If you are unsure of the full name of the class, you can use the `--search' option to search through all known assemblies. MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details. WEB SITE
Visit http://www.mono-project.com for details monop(1)

Check Out this Related Man Page

Mono(permview)															    Mono(permview)

NAME
permview - Viewer for declarative security permission sets inside assemblies. SYNOPSIS
permview [options] assembly DESCRIPTION
This tools allow to list the declarative security attributes present in an assembly. The security attributes are either found on the assem- bly level, on the classes and the methods. This tool is useful to diagnose why an assembly won't load or why some class/method throws Secu- rityException. OPTIONS
-output filename Output all declarative security attributes related informations into the specified file. -xml | --xml | /XML Output all declarative security attributes in an XML format. -decl | --decl | /DECL Show declarative security attributes on classes and methods. The default, without the -decl option, is to show only the assembly level permission sets. -? | /? | -h[elp] | /h[elp] Display help informations about the permview tool. EXAMPLES
permview mscorlib.dll This will show the minimum, optional and refused permissions sets (i.e. the assembly level security actions) that are compiled inside the mscorlib assembly. permview -decl permview.exe This will show all (assembly, class or method level) declarative security attributes present in the permview.exe assembly. AUTHOR
Written by Sebastien Pouliot COPYRIGHT
Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details. WEB SITE
Visit http://www.mono-project.com for details Mono(permview)
Man Page

9 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Membership

what is the meaning of the types of membership and when am i a full member:confused: :confused: :confused: (1 Reply)
Discussion started by: nigel
1 Replies

2. Post Here to Contact Site Administrators and Moderators

confused with the members list

The members list has left me a bit confused. If I click on Members List and go to the page does it show the complete members list? Asking this because my name does not show up there. But if I click on B and go to page 3, I can see my username and stuff... Why is this? (5 Replies)
Discussion started by: blowtorch
5 Replies

3. Programming

Need assembly code for C program

Dear Buddies, I need assembly code for a compiled c program in unix. Kindly help me.... Thanking you in advance. (1 Reply)
Discussion started by: karthik537
1 Replies

4. Programming

Help with assembly code

I want make simple assembly code for some thing like this a^6+6a^2+2a and range of a is between -3 to 3. I tried but it is not working properly. As this is my first assembly program that I am going to try, I want some help with it. I found this example online but i dont want this kind of... (2 Replies)
Discussion started by: Learnerabc
2 Replies

5. Programming

GDB - how to find interesting information?

Hi all, I was wondering how to find interesting information inside the assembly code. As example, I've been trying something at smashthestack wargame. After viewing the assembly code via disassemble main command, I'm not sure what else to do. Hopefully someone can guide me here. This is... (2 Replies)
Discussion started by: type8code0
2 Replies

6. What is on Your Mind?

Can assembly language be dispensed with ?

Hi. I learned C in high school and am proficient in it:D. At the college while learning microcontrollers there was a short course on assembly language which I skipped:p but had no trouble as most of the application programming had to be done in C. Should I go back n learn assembly language as I... (9 Replies)
Discussion started by: priyadarshianu
9 Replies

7. Shell Programming and Scripting

auto-generating assembly code by variables found by script

Hi everybody I'm working on a list of registers(flip-flops to be exact), now i need to extract some value from this list and use them as arguments to pass them to some assembly code for example i have: 118 chain79 MASTER (FF-LE) FFFF 1975829 /TCK F FD1TQHVTT1 ... (1 Reply)
Discussion started by: Behrouzx77
1 Replies

8. Programming

Run assembly program on debian?

Hi, I am new to assembly. What i need to install to run assembly program on debian 64? What i write to excite the code? (3 Replies)
Discussion started by: kaja
3 Replies

9. Programming

Help w/ writing a custom Linux shell using x86 assembly (NASM)

Hello world, I thought this might be a great start to help me with an assignment I have that requires me to write an assembly program that mimics a 32 bit Linux command shell: When launched, your program will perform the following steps in a loop: 1. Print a prompt, specifically “$ “... (1 Reply)
Discussion started by: turtle13
1 Replies