File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ A number of diagnostic command line options take as argument a method
70
70
description. A method description is a textual representation that can
71
71
be used to uniquely identify a method. The syntax is as follows:
72
72
73
- [namespace]classname:methodname[(arguments)]
73
+ [W:][ namespace]classname:methodname[(arguments)]
74
74
75
75
The values in brackets are optional, like the namespace and the
76
76
arguments. The arguments themselves are either empty, or a
@@ -93,11 +93,18 @@ both a comma and a space and '\>'.
93
93
94
94
By-reference arguments should include a "&" after the typename.
95
95
96
+ If the method description is prefixed by 'W:' (or 'w:'), then it will
97
+ match a * wrapper* method that may be created by the runtime for the
98
+ specified method. (For example imported P/Invoke methods may have a
99
+ wrapper generated by the runtime.)
100
+
101
+
96
102
Examples:
97
103
98
104
*:ctor(int) // All constructors that take an int as an argument
99
105
*:Main // Methods named Main in any class
100
106
*:Main(string[]) // Methods named Main that take a string array in any class
107
+ W:UnixSignal:install // Wrappers for the UnixSignal.install DllImport
101
108
102
109
## RUNTIME OPTIONS
103
110
You can’t perform that action at this time.
0 commit comments