Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martinez <joelmartinez@gmail.com>2017-09-26 00:02:38 +0300
committerJoel Martinez <joelmartinez@gmail.com>2017-09-26 17:07:35 +0300
commitf51d2af552e63de7d72555a5c61d9c2a28b7faa0 (patch)
treef1216de7785a096e833d1e05b2c2f0df3a74658c /mdoc/Test/en.expected-operators
parentff03c7b41d441ebd7a5a73e5d02c8ca5c5590218 (diff)
mdoc: IL signatures now reflect ref, in, and out modifiers.
Closes #118
Diffstat (limited to 'mdoc/Test/en.expected-operators')
-rw-r--r--mdoc/Test/en.expected-operators/mdoc.Test.SampleClasses/TestClass.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/mdoc/Test/en.expected-operators/mdoc.Test.SampleClasses/TestClass.xml b/mdoc/Test/en.expected-operators/mdoc.Test.SampleClasses/TestClass.xml
index 58d53f12..c7e71d02 100644
--- a/mdoc/Test/en.expected-operators/mdoc.Test.SampleClasses/TestClass.xml
+++ b/mdoc/Test/en.expected-operators/mdoc.Test.SampleClasses/TestClass.xml
@@ -644,5 +644,26 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
+ <Member MemberName="RefAndOut">
+ <MemberSignature Language="C#" Value="public void RefAndOut (ref int a, out int b);" />
+ <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RefAndOut(int32&amp; a, [out] int32&amp; b) cil managed" />
+ <MemberType>Method</MemberType>
+ <AssemblyInfo>
+ <AssemblyVersion>0.0.0.0</AssemblyVersion>
+ </AssemblyInfo>
+ <ReturnValue>
+ <ReturnType>System.Void</ReturnType>
+ </ReturnValue>
+ <Parameters>
+ <Parameter Name="a" Type="System.Int32&amp;" RefType="ref" />
+ <Parameter Name="b" Type="System.Int32&amp;" RefType="out" />
+ </Parameters>
+ <Docs>
+ <param name="a">To be added.</param>
+ <param name="b">To be added.</param>
+ <summary>To be added.</summary>
+ <remarks>To be added.</remarks>
+ </Docs>
+ </Member>
</Members>
</Type>