Imported Upstream version 6.6.0.89

Former-commit-id: b39a328747c2f3414dc52e009fb6f0aa80ca2492
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-09-24 08:53:40 +00:00
parent cf815e07e0
commit 95fdb59ea6
2556 changed files with 138145 additions and 47453 deletions

View File

@@ -21,7 +21,7 @@ MONODOC_RESOURCES_COMMAND = $(foreach file,$(MONODOC_RESOURCES),/resource:../../
LIB_REFS = monodoc System System.Xml System.Core Mono.Cecil ICSharpCode.SharpZipLib System.Xml.Linq System.Web
LOCAL_MCS_FLAGS = $(MDOC_RESOURCES_COMMAND) $(MONODOC_RESOURCES_COMMAND)
LOCAL_MCS_FLAGS = $(MDOC_RESOURCES_COMMAND) $(MONODOC_RESOURCES_COMMAND) -define:NEW_CECIL
PROGRAM = $(topdir)/class/lib/$(PROFILE)/mdoc.exe
PROGRAM_DEPS = $(topdir)/class/lib/$(PROFILE)/monodoc.dll
MSCORLIB = -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll
@@ -44,6 +44,12 @@ $(PROGRAM): $(PROGRAM_DEPS)
PROGRAM_COMPILE = $(CSCOMPILE)
ifdef MCS_MODE
NO_INSTALL=1
NO_BUILD=1
NO_TEST=1
endif
include ../../build/executable.make
MONO = \
@@ -57,11 +63,6 @@ DIFF = diff -rupZ
DIFF_QUIET = diff --brief -Z
endif
ifdef MCS_MODE
DIFF = echo "WARNING: running in mcs mode, tests are specific to roslyn and would fail. Skipping diff check."
DIFF_QUIET = $(DIFF)
endif
dist-local: dist-default dist-tests
dist-tests:
@@ -86,11 +87,11 @@ Test/DocTest-addNonGeneric-v2.dll:
Test/DocTest-DropNS-classic-secondary.dll:
@echo $(value @)
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic-secondary.cs
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic-secondary.cs -doc:Test/DocTest-DropNS-classic-secondary.xml
Test/DocTest-DropNS-classic.dll:
@echo $(value @)
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic.cs
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic.cs -doc:Test/DocTest-DropNS-classic.xml
Test/DocTest-DropNS-unified.dll:
$(CSCOMPILE) $(TEST_CSCFLAGS) $(MSCORLIB) -unsafe -target:library -out:$@ Test/DocTest-DropNS-unified.cs
@@ -134,7 +135,7 @@ Test/DocTest.dll-v1:
Test/DocTest.dll-v2:
-rm -f Test/DocTest.cs
cp Test/DocTest-v1.cs Test/DocTest.cs
cd Test && patch --binary -p0 < DocTest-v2.patch
cd Test && patch -p0 < DocTest-v2.patch
-rm -f Test/DocTest.dll
$(MAKE) TEST_CSCFLAGS=$(TEST_CSCFLAGS) Test/DocTest.dll
@@ -145,20 +146,20 @@ check-monodocer-addNonGeneric: $(PROGRAM)
-rm -Rf Test/en.actual
# first, make a docset with the generic method
$(MAKE) Test/DocTest-addNonGeneric.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric.dll
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric.dll
# now add a non-generic version of the method and update several times
$(MAKE) Test/DocTest-addNonGeneric-v2.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-addNonGeneric-v2.dll
$(DIFF) Test/en.expected-addNonGeneric Test/en.actual
check-monodocer-dropns-classic: $(PROGRAM)
# tests the simplest --dropns case, a single class where the root namespace was dropped.
-rm -Rf Test/en.actual
$(MAKE) Test/DocTest-DropNS-classic.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
$(MAKE) update-monodocer-dropns-unified
$(DIFF) Test/en.expected-dropns-classic-v1 Test/en.actual
@@ -170,12 +171,12 @@ check-monodocer-dropns-multi: $(PROGRAM)
$(MAKE) Test/DocTest-DropNS-unified-multitest.dll
# mdoc update for both classic and unified
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
# now run it again to verify idempotency
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
$(DIFF) Test/en.expected-dropns-multi Test/en.actual
@@ -188,130 +189,132 @@ check-monodocer-dropns-multi-withexisting: $(PROGRAM)
$(MAKE) Test/DocTest-DropNS-unified-multitest.dll
# mdoc update to show a pre-existing set of documents
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic.dll --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
# mdoc update for both classic and unified
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-CLASSIC) --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual $(MULTI-UNIFIED) --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework --dropns Test/DocTest-DropNS-unified-multitest.dll=MyFramework
$(DIFF) Test/en.expected-dropns-multi-withexisting Test/en.actual
check-monodocer-dropns-delete: $(PROGRAM)
-rm -Rf Test/en.actual
-rm -Rf Test/actual_statistics.txt
rm -Rf Test/DocTest-DropNS-classic-deletetest.dll
rm -Rf Test/DocTest-DropNS-unified-deletetest.dll
$(MAKE) Test/DocTest-DropNS-classic-deletetest.dll
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
$(MAKE) Test/DocTest-DropNS-unified-deletetest.dll
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework
$(MAKE) Test/DocTest-DropNS-classic-deletetest-V2.dll
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-classic-deletetest.dll --api-style=classic
$(MAKE) Test/DocTest-DropNS-unified-deletetest-V2.dll
$(MONO) $(PROGRAM) update --delete --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework
$(MONO) $(PROGRAM) update --delete -o Test/en.actual Test/DocTest-DropNS-unified-deletetest.dll --api-style=unified --dropns Test/DocTest-DropNS-unified-deletetest.dll=MyFramework -statistics Test/actual_statistics.txt
$(DIFF) Test/en.expected-dropns-delete Test/en.actual
$(DIFF) Test/expected_remove_statistics.txt Test/actual_statistics.txt
check-monodocer-dropns-classic-withsecondary: $(PROGRAM)
# tests case where a secondary assembly is included with a --dropns parameter
-rm -Rf Test/en.actual
$(MAKE) Test/DocTest-DropNS-classic.dll
$(MAKE) Test/DocTest-DropNS-classic-secondary.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
$(MAKE) update-monodocer-dropns-unified-withsecondary
$(DIFF) Test/en.expected-dropns-classic-withsecondary Test/en.actual
update-monodocer-dropns-unified: $(PROGRAM)
$(MAKE) Test/DocTest-DropNS-unified.dll
$(MONO) $(PROGRAM) update --debug --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
$(MONO) $(PROGRAM) update --debug -o Test/en.actual Test/DocTest-DropNS-unified.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
update-monodocer-dropns-unified-withsecondary: $(PROGRAM)
$(MAKE) Test/DocTest-DropNS-unified.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-unified.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-unified.dll Test/DocTest-DropNS-classic-secondary.dll --api-style=unified --dropns Test/DocTest-DropNS-unified.dll=MyFramework
update-monodocer-dropns-classic-secondary: $(PROGRAM)
$(MAKE) Test/DocTest-DropNS-classic-secondary.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-DropNS-classic-secondary.dll --api-style=classic
check-monodocer-internal-interface: $(PROGRAM)
# Tests to make sure internal interfaces that are explicitly implemented are not documented
-rm -Rf Test/en.actual
$(MAKE) Test/DocTest-InternalInterface.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-InternalInterface.dll
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-InternalInterface.dll -lang VB.NET
$(DIFF) Test/en.expected-internal-interface Test/en.actual
check-monodocer-enumerations: $(PROGRAM)
-rm -Rf Test/en.actual
$(MAKE) Test/DocTest-enumerations.dll
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.actual Test/DocTest-enumerations.dll
$(MONO) $(PROGRAM) update -o Test/en.actual Test/DocTest-enumerations.dll
$(DIFF) Test/en.expected-enumerations Test/en.actual
check-monodocer-update: $(PROGRAM)
find Test/en.expected -name \*.xml -exec rm "{}" \;
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected Test/DocTest.dll
$(MONO) $(PROGRAM) update -o Test/en.expected Test/DocTest.dll -lang docid -lang vb.net -lang fsharp -lang javascript -lang c++/cli -lang c++/cx -lang c++/winrt
check-monodocer: $(PROGRAM)
-rm -Rf Test/en.actual
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) update --debug --exceptions=all -o Test/en.actual Test/DocTest.dll
$(MONO) $(PROGRAM) update --debug -o Test/en.actual Test/DocTest.dll -lang docid -lang vb.net -lang fsharp -lang javascript -lang c++/cli -lang c++/cx -lang c++/winrt
$(DIFF) Test/en.expected Test/en.actual
$(MONO) $(PROGRAM) update --debug --exceptions=all -o Test/en.actual Test/DocTest.dll
$(MONO) $(PROGRAM) update --debug -o Test/en.actual Test/DocTest.dll -lang docid -lang vb.net -lang fsharp -lang javascript -lang c++/cli -lang c++/cx -lang c++/winrt
$(DIFF) Test/en.expected Test/en.actual
check-monodocer-since-update: $(PROGRAM)
find Test/en.expected.since -name \*.xml -exec rm "{}" \;
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected.since Test/DocTest.dll
$(MONO) $(PROGRAM) update -o Test/en.expected.since Test/DocTest.dll
$(MAKE) Test/DocTest.dll-v2
$(MONO) $(PROGRAM) update --exceptions=all --since="Version 2.0" \
$(MONO) $(PROGRAM) update --since="Version 2.0" \
-o Test/en.expected.since Test/DocTest.dll
check-monodocer-since: $(PROGRAM)
rm -Rf Test/en.actual
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) --debug update --exceptions=all -o Test/en.actual Test/DocTest.dll
$(MONO) $(PROGRAM) --debug update -o Test/en.actual Test/DocTest.dll
$(MAKE) Test/DocTest.dll-v2
$(MONO) $(PROGRAM) --debug update --exceptions=all --since="Version 2.0" \
$(MONO) $(PROGRAM) --debug update --since="Version 2.0" \
-o Test/en.actual Test/DocTest.dll
$(DIFF) Test/en.expected.since Test/en.actual
check-monodocer-delete-update: $(PROGRAM)
find Test/en.expected.delete -type f -exec rm "{}" \;
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected.delete Test/DocTest.dll
$(MONO) $(PROGRAM) update -o Test/en.expected.delete Test/DocTest.dll
$(MAKE) Test/DocTest.dll-v2
$(MONO) $(PROGRAM) update --exceptions=all -o Test/en.expected.delete Test/DocTest.dll
$(MONO) $(PROGRAM) update -o Test/en.expected.delete Test/DocTest.dll
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) update -fno-assembly-versions --delete --exceptions=all \
$(MONO) $(PROGRAM) update -fno-assembly-versions --delete \
-o Test/en.expected.delete Test/DocTest.dll
check-monodocer-delete: $(PROGRAM)
rm -Rf Test/en.actual
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) --debug update --exceptions=all -o Test/en.actual Test/DocTest.dll
$(MONO) $(PROGRAM) --debug update -o Test/en.actual Test/DocTest.dll
$(MAKE) Test/DocTest.dll-v2
$(MONO) $(PROGRAM) --debug update --exceptions=all -o Test/en.actual Test/DocTest.dll
$(MONO) $(PROGRAM) --debug update -o Test/en.actual Test/DocTest.dll
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) --debug update -fno-assembly-versions --delete --exceptions=all -o Test/en.actual Test/DocTest.dll
$(MONO) $(PROGRAM) --debug update -fno-assembly-versions --delete -o Test/en.actual Test/DocTest.dll
$(DIFF) Test/en.expected.delete Test/en.actual
check-monodocer-importslashdoc-update: $(PROGRAM)
find Test/en.expected.importslashdoc -name \*.xml -exec rm "{}" \;
$(MAKE) Test/DocTest.dll-v1 TEST_CSCFLAGS=-doc:Test/DocTest.xml
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/DocTest.xml \
$(MONO) $(PROGRAM) --debug update -i Test/DocTest.xml \
-o Test/en.expected.importslashdoc Test/DocTest.dll
check-monodocer-importslashdoc: $(PROGRAM)
rm -Rf Test/en.actual
$(MAKE) Test/DocTest.dll-v1 TEST_CSCFLAGS=-doc:Test/DocTest.xml
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/DocTest.xml \
$(MONO) $(PROGRAM) --debug update -i Test/DocTest.xml \
-o Test/en.actual Test/DocTest.dll
$(DIFF) Test/en.expected.importslashdoc Test/en.actual
check-monodocer-importecmadoc-update: $(PROGRAM)
find Test/en.expected.importecmadoc -name \*.xml -exec rm "{}" \;
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/TestEcmaDocs.xml \
$(MONO) $(PROGRAM) --debug update -i Test/TestEcmaDocs.xml \
'--type=System.Action`1' --type=System.AsyncCallback \
--type=System.Environment --type=System.Array \
-o Test/en.expected.importecmadoc Test/DocTest.dll
@@ -319,7 +322,7 @@ check-monodocer-importecmadoc-update: $(PROGRAM)
check-monodocer-importecmadoc: $(PROGRAM)
rm -Rf Test/en.actual
$(MAKE) Test/DocTest.dll-v1
$(MONO) $(PROGRAM) --debug update --exceptions=all -i Test/TestEcmaDocs.xml \
$(MONO) $(PROGRAM) --debug update -i Test/TestEcmaDocs.xml \
'--type=System.Action`1' --type=System.AsyncCallback \
--type=System.Environment --type=System.Array \
-o Test/en.actual Test/DocTest.dll
@@ -357,7 +360,7 @@ check-mdoc-export-msxdoc-update:
check-mdoc-export-msxdoc:
$(MONO) $(PROGRAM) export-msxdoc -o - Test/en.expected.importslashdoc \
| $(DIFF_QUIET) - Test/msxdoc-expected.importslashdoc.xml
| $(DIFF) - Test/msxdoc-expected.importslashdoc.xml
my_abs_top_srcdir = $(shell cd . && pwd)
@@ -387,7 +390,12 @@ run-test-local: check-doc-tools
run-test-update : check-doc-tools-update
check-doc-tools: check-monodocer-since \
ifdef MCS_MODE
check-doc-tools:
@echo "WARNING: running in mcs mode, mdoc doesn't compile with mcs. Skipping."
else
check-doc-tools: \
check-monodocer-since \
check-monodocer-importecmadoc \
check-monodocer-importslashdoc \
check-monodocer \
@@ -398,12 +406,14 @@ check-doc-tools: check-monodocer-since \
check-mdoc-validate \
check-monodocer-dropns-classic \
check-monodocer-dropns-classic-withsecondary \
check-monodocer-dropns-delete \
check-monodocer-internal-interface \
check-monodocer-enumerations \
check-monodocer-dropns-multi \
check-monodocer-dropns-multi-withexisting
#check-monodocer-dropns-delete
endif
check-doc-tools-update: check-monodocer-since-update \
check-monodocer-importecmadoc-update \
check-monodocer-importslashdoc-update \

View File

@@ -23,6 +23,7 @@
<ReturnValue>
<ReturnType>MyNamespace.MyEnum</ReturnType>
</ReturnValue>
<MemberValue>0</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -37,6 +38,7 @@
<ReturnValue>
<ReturnType>MyNamespace.MyEnum</ReturnType>
</ReturnValue>
<MemberValue>2</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -51,6 +53,7 @@
<ReturnValue>
<ReturnType>MyNamespace.MyEnum</ReturnType>
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>

View File

@@ -28,6 +28,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>131072</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -42,6 +43,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>131584</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -56,6 +58,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>196608</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -70,6 +73,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>196864</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -84,6 +88,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>197120</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -98,6 +103,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>262144</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -112,6 +118,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>262400</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -126,6 +133,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>262656</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -140,6 +148,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>262912</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -154,6 +163,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>327680</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -168,6 +178,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>327936</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -182,6 +193,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>393216</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -196,6 +208,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>393472</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -210,6 +223,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>458752</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -224,6 +238,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>459008</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -238,6 +253,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>524288</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -252,6 +268,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>524544</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -266,6 +283,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>524800</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -280,6 +298,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>525056</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -294,6 +313,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>4278190080</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -308,6 +328,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>16777216</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -322,6 +343,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>33554432</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -336,6 +358,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>16777215</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -350,6 +373,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2814749767106560</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -364,6 +388,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2815849278734336</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -378,6 +403,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2825744883384320</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -392,6 +418,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2816948790362112</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -406,6 +433,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2818048301989888</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -420,6 +448,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2819147813617664</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -434,6 +463,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2820247325245440</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -448,6 +478,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2821346836873216</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -462,6 +493,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2822446348500992</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -476,6 +508,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2823545860128768</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -490,6 +523,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>2824645371756544</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -504,6 +538,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>18374686479671623680</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -518,6 +553,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>72057594037927936</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -532,6 +568,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>144115188075855872</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -546,6 +583,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>72057589742960640</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -560,6 +598,7 @@
<ReturnValue>
<ReturnType>ObjCRuntime.Platform</ReturnType>
</ReturnValue>
<MemberValue>0</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>

View File

@@ -1,6 +1,7 @@
<Type Name="MyClass" FullName="MyNamespace.MyClass">
<TypeSignature Language="C#" Value="public class MyClass" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit MyClass extends System.Object" />
<TypeSignature Language="VB.NET" Value="Public Class MyClass" />
<AssemblyInfo>
<AssemblyName>DocTest-InternalInterface</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
@@ -17,6 +18,7 @@
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public MyClass ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
@@ -30,6 +32,7 @@
<Member MemberName="Bar">
<MemberSignature Language="C#" Value="public string Bar { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Bar" />
<MemberSignature Language="VB.NET" Value="Public Property Bar As String" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
@@ -46,7 +49,11 @@
<Member MemberName="BarMeth">
<MemberSignature Language="C#" Value="public void BarMeth ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void BarMeth() cil managed" />
<MemberSignature Language="VB.NET" Value="Public Sub BarMeth ()" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:MyNamespace.MyInternalInterface.BarMeth</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>

View File

@@ -1,5 +1,5 @@
<Type Name="GenericBase&lt;U&gt;+NestedCollection+Enumerator" FullName="Mono.DocTest.Generic.GenericBase&lt;U&gt;+NestedCollection+Enumerator">
<TypeSignature Language="C#" Value="protected struct GenericBase&lt;U&gt;.NestedCollection.Enumerator" />
<TypeSignature Language="C#" Value="protected internal struct GenericBase&lt;U&gt;.NestedCollection.Enumerator" />
<TypeSignature Language="ILAsm" Value=".class nested protected sequential ansi sealed beforefieldinit GenericBase`1/NestedCollection/Enumerator&lt;U&gt; extends System.ValueType" />
<AssemblyInfo>
<AssemblyName>DocTest</AssemblyName>

View File

@@ -76,203 +76,6 @@
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidCastException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="MyEvent">
@@ -285,207 +88,10 @@
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidCastException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="op_Explicit">
<MemberSignature Language="C#" Value="public static U op_Explicit (Mono.DocTest.Generic.GenericBase&lt;U&gt; list);" />
<MemberSignature Language="C#" Value="public static explicit operator U (Mono.DocTest.Generic.GenericBase&lt;U&gt; list);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig specialname !U op_Explicit(class Mono.DocTest.Generic.GenericBase`1&lt;!U&gt; list) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>

View File

@@ -23,6 +23,9 @@
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable&lt;System.Int32[]&gt;</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.IEnumerable</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<typeparam name="T">To be added.</typeparam>
@@ -44,6 +47,9 @@
<MemberSignature Language="C#" Value="public System.Collections.Generic.IEnumerator&lt;int[]&gt; GetEnumerator ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerator`1&lt;int32[]&gt; GetEnumerator() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.IEnumerable`1.GetEnumerator</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerator&lt;System.Int32[]&gt;</ReturnType>
</ReturnValue>
@@ -98,7 +104,7 @@
</Member>
<Member MemberName="RefMethod&lt;U&gt;">
<MemberSignature Language="C#" Value="public void RefMethod&lt;U&gt; (ref T t, ref U u);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RefMethod&lt;U&gt;(!T t, !!U u) cil managed" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RefMethod&lt;U&gt;(!T&amp; t, !!U&amp; u) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
@@ -107,8 +113,8 @@
<TypeParameter Name="U" />
</TypeParameters>
<Parameters>
<Parameter Name="t" Type="T&amp;" RefType="ref" />
<Parameter Name="u" Type="U&amp;" RefType="ref" />
<Parameter Name="t" Type="T" RefType="ref" />
<Parameter Name="u" Type="U" RefType="ref" />
</Parameters>
<Docs>
<typeparam name="U">To be added.</typeparam>
@@ -122,6 +128,9 @@
<MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.IEnumerable.GetEnumerator</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Collections.IEnumerator</ReturnType>
</ReturnValue>

View File

@@ -35,9 +35,21 @@
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable&lt;A&gt;</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable&lt;T&gt;</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerator&lt;A&gt;</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.IEnumerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.IEnumerator</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<typeparam name="A">To be added.</typeparam>
@@ -78,6 +90,9 @@
<MemberSignature Language="C#" Value="public int Count { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Count" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.ICollection`1.Count</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
@@ -91,6 +106,9 @@
<MemberSignature Language="C#" Value="public A Current { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance !A Current" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IEnumerator`1.Current</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>A</ReturnType>
</ReturnValue>
@@ -104,6 +122,9 @@
<MemberSignature Language="C#" Value="public void Dispose ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Dispose() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.IDisposable.Dispose</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
@@ -145,6 +166,9 @@
<MemberSignature Language="C#" Value="A IFoo&lt;A&gt;.Method&lt;U&gt; (A a, U u);" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance !A Mono.DocTest.Generic.IFoo&lt;A&gt;.Method&lt;U&gt;(!A a, !!U u) cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Mono.DocTest.Generic.IFoo`1.Method``1(`0,``0)</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>A</ReturnType>
</ReturnValue>
@@ -168,6 +192,9 @@
<MemberSignature Language="C#" Value="public bool MoveNext ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool MoveNext() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.IEnumerator.MoveNext</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
@@ -182,6 +209,9 @@
<MemberSignature Language="C#" Value="public void Reset ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Reset() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.IEnumerator.Reset</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
@@ -195,6 +225,9 @@
<MemberSignature Language="C#" Value="void ICollection&lt;A&gt;.Add (A item);" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Collections.Generic.ICollection&lt;A&gt;.Add(!A item) cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Add(`0)</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
@@ -211,6 +244,9 @@
<MemberSignature Language="C#" Value="void ICollection&lt;A&gt;.Clear ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Collections.Generic.ICollection&lt;A&gt;.Clear() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Clear</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
@@ -224,6 +260,9 @@
<MemberSignature Language="C#" Value="bool ICollection&lt;A&gt;.Contains (A item);" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance bool System.Collections.Generic.ICollection&lt;A&gt;.Contains(!A item) cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Contains(`0)</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
@@ -241,6 +280,9 @@
<MemberSignature Language="C#" Value="bool System.Collections.Generic.ICollection&lt;A&gt;.IsReadOnly { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool System.Collections.Generic.ICollection&lt;A&gt;.IsReadOnly" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.ICollection`1.IsReadOnly</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
@@ -254,6 +296,9 @@
<MemberSignature Language="C#" Value="bool ICollection&lt;A&gt;.Remove (A item);" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance bool System.Collections.Generic.ICollection&lt;A&gt;.Remove(!A item) cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.ICollection`1.Remove(`0)</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
@@ -271,6 +316,9 @@
<MemberSignature Language="C#" Value="System.Collections.Generic.IEnumerator&lt;A&gt; IEnumerable&lt;A&gt;.GetEnumerator ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.Generic.IEnumerator`1&lt;!A&gt; System.Collections.Generic.IEnumerable&lt;A&gt;.GetEnumerator() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.Generic.IEnumerable`1.GetEnumerator</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerator&lt;A&gt;</ReturnType>
</ReturnValue>
@@ -285,6 +333,9 @@
<MemberSignature Language="C#" Value="A System.Collections.Generic.IEnumerator&lt;A&gt;.Current { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance !A System.Collections.Generic.IEnumerator&lt;A&gt;.Current" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.Generic.IEnumerator`1.Current</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>A</ReturnType>
</ReturnValue>
@@ -298,6 +349,9 @@
<MemberSignature Language="C#" Value="System.Collections.IEnumerator IEnumerable.GetEnumerator ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Collections.IEnumerable.GetEnumerator</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Collections.IEnumerator</ReturnType>
</ReturnValue>
@@ -312,6 +366,9 @@
<MemberSignature Language="C#" Value="object System.Collections.IEnumerator.Current { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance object System.Collections.IEnumerator.Current" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:System.Collections.IEnumerator.Current</InterfaceMember>
</Implements>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>

View File

@@ -19,6 +19,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Color</ReturnType>
</ReturnValue>
<MemberValue>2</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -30,6 +31,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Color</ReturnType>
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -41,6 +43,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Color</ReturnType>
</ReturnValue>
<MemberValue>2</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -52,6 +55,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Color</ReturnType>
</ReturnValue>
<MemberValue>0</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>

View File

@@ -29,8 +29,6 @@
<param name="docs">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:Mono.DocTest.DocAttribute.#ctor(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="Field">

View File

@@ -31,10 +31,6 @@
<param name="i">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ApplicationException">To be added; from:
<see cref="M:Mono.DocTest.DocValueType.M(System.Int32)" /></exception>
<exception cref="T:System.SystemException">To be added; from:
<see cref="M:Mono.DocTest.DocValueType.M(System.Int32)" /></exception>
</Docs>
</Member>
<Member MemberName="total">

View File

@@ -80,8 +80,6 @@
<param name="list">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.Exception">To be added; from:
<see cref="M:Mono.DocTest.UseLists.Process(System.Collections.Generic.List{System.Int32})" /></exception>
</Docs>
</Member>
<Member MemberName="Process">
@@ -98,13 +96,6 @@
<param name="list">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:Mono.DocTest.UseLists.Process``1(System.Collections.Generic.List{System.Predicate{``0}})" />,
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:Mono.DocTest.UseLists.Process(System.Collections.Generic.List{System.Predicate{System.Int32}})" />,
<see cref="M:Mono.DocTest.UseLists.Process``1(System.Collections.Generic.List{System.Predicate{``0}})" />,
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="Process&lt;T&gt;">
@@ -125,10 +116,6 @@
<param name="list">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:Mono.DocTest.UseLists.Process``1(System.Collections.Generic.List{System.Predicate{``0}})" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="UseHelper&lt;T,U,V&gt;">

View File

@@ -1,5 +1,5 @@
<Type Name="Widget+Direction" FullName="Mono.DocTest.Widget+Direction">
<TypeSignature Language="C#" Value="protected enum Widget.Direction" />
<TypeSignature Language="C#" Value="protected internal enum Widget.Direction" />
<TypeSignature Language="ILAsm" Value=".class nested protected auto ansi sealed Widget/Direction extends System.Enum" />
<AssemblyInfo>
<AssemblyName>DocTest</AssemblyName>
@@ -24,6 +24,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
</ReturnValue>
<MemberValue>2</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -35,6 +36,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
</ReturnValue>
<MemberValue>0</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -46,6 +48,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>
@@ -57,6 +60,7 @@
<ReturnValue>
<ReturnType>Mono.DocTest.Widget+Direction</ReturnType>
</ReturnValue>
<MemberValue>3</MemberValue>
<Docs>
<summary>To be added.</summary>
</Docs>

View File

@@ -42,8 +42,6 @@
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.NotImplementedException">To be added; from:
<see cref="M:System.Array.AsReadOnly``1(``0[])" /></exception>
</Docs>
</Member>
<Member MemberName="ConvertAll&lt;TInput,TOutput&gt;">
@@ -69,13 +67,11 @@
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.ConvertAll``2(``0[],System.Converter{``0,``1})" /></exception>
</Docs>
</Member>
<Member MemberName="Resize&lt;T&gt;">
<MemberSignature Language="C#" Value="public static void Resize&lt;T&gt; (ref T[] array, int newSize);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Resize&lt;T&gt;(!!T[] array, int32 newSize) cil managed" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Resize&lt;T&gt;(!!T[]&amp; array, int32 newSize) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
@@ -84,7 +80,7 @@
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="array" Type="T[]&amp;" RefType="ref" />
<Parameter Name="array" Type="T[]" RefType="ref" />
<Parameter Name="newSize" Type="System.Int32" />
</Parameters>
<Docs>
@@ -93,8 +89,6 @@
<param name="newSize">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.Exception">To be added; from:
<see cref="M:System.Array.Resize``1(``0[]@,System.Int32)" /></exception>
</Docs>
</Member>
</Members>

View File

@@ -28,8 +28,6 @@
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.NotSupportedException">To be added; from:
<see cref="M:System.Environment.GetFolderPath(System.Environment.SpecialFolder)" /></exception>
</Docs>
</Member>
</Members>

View File

@@ -131,11 +131,9 @@ and the second dimension indexed by 1, 2, and 3. </para>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.NotImplementedException">To be added; from:
<see cref="M:System.Array.AsReadOnly``1(``0[])" /></exception>
</Docs>
</Member>
<Member MemberName="ConvertAll&lt;T,U&gt;">
<Member MemberName="ConvertAll&lt;TInput,TOutput&gt;">
<MemberSignature Language="C#" Value="public static TOutput[] ConvertAll&lt;TInput,TOutput&gt; (TInput[] array, Converter&lt;TInput,TOutput&gt; converter);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!TOutput[] ConvertAll&lt;TInput, TOutput&gt;(!!TInput[] array, class System.Converter`2&lt;!!TInput, !!TOutput&gt; converter) cil managed" />
<MemberType>Method</MemberType>
@@ -169,15 +167,13 @@ and the second dimension indexed by 1, 2, and 3. </para>
<remarks>
<para>The <see cref="T:System.Converter&lt;T,U&gt;" /> is a delegate that converts an array element to the target type. The elements of <paramref name="array" /> are individually passed to this converter, and the converted elements are saved in the new array. The source array remains unchanged.</para>
</remarks>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.ConvertAll``2(``0[],System.Converter{``0,``1})" /></exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <see langword="null" /> or <paramref name="converter" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="Resize&lt;T&gt;">
<MemberSignature Language="C#" Value="public static void Resize&lt;T&gt; (ref T[] array, int newSize);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Resize&lt;T&gt;(!!T[] array, int32 newSize) cil managed" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Resize&lt;T&gt;(!!T[]&amp; array, int32 newSize) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
@@ -189,7 +185,7 @@ and the second dimension indexed by 1, 2, and 3. </para>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="array" Type="T[]&amp;" RefType="ref" />
<Parameter Name="array" Type="T[]" RefType="ref" />
<Parameter Name="newSize" Type="System.Int32" />
</Parameters>
<Docs>
@@ -198,8 +194,6 @@ and the second dimension indexed by 1, 2, and 3. </para>
<param name="newSize">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.Exception">To be added; from:
<see cref="M:System.Array.Resize``1(``0[]@,System.Int32)" /></exception>
</Docs>
</Member>
</Members>

View File

@@ -78,8 +78,6 @@
property.</para>
</block>
</remarks>
<exception cref="T:System.NotSupportedException">To be added; from:
<see cref="M:System.Environment.GetFolderPath(System.Environment.SpecialFolder)" /></exception>
<exception cref="T:System.ArgumentException">foo</exception>
<permission cref="T:System.SomePermission">bar</permission>
<altmember cref="T:System.SomeMember">alt member</altmember>

View File

@@ -1,5 +1,5 @@
<Type Name="GenericBase&lt;U&gt;+NestedCollection+Enumerator" FullName="Mono.DocTest.Generic.GenericBase&lt;U&gt;+NestedCollection+Enumerator">
<TypeSignature Language="C#" Value="protected struct GenericBase&lt;U&gt;.NestedCollection.Enumerator" />
<TypeSignature Language="C#" Value="protected internal struct GenericBase&lt;U&gt;.NestedCollection.Enumerator" />
<TypeSignature Language="ILAsm" Value=".class nested protected sequential ansi sealed beforefieldinit GenericBase`1/NestedCollection/Enumerator&lt;U&gt; extends System.ValueType" />
<AssemblyInfo>
<AssemblyName>DocTest</AssemblyName>

View File

@@ -93,203 +93,6 @@
<Docs>
<summary>To be added.</summary>
<remarks>E:Mono.DocTest.Generic.GenericBase`1.ItemChanged</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidCastException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="MyEvent">
@@ -305,207 +108,10 @@
<Docs>
<summary>To be added.</summary>
<remarks>E:Mono.DocTest.Generic.GenericBase`1.MyEvent</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidCastException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)" />,
<see cref="M:System.Array.CreateArrayTypeMismatchException" />,
<see cref="M:System.Delegate.Combine(System.Delegate,System.Delegate)" />,
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" />,
<see cref="M:System.Delegate.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.FormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char*,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.String,System.Int32,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)" />,
<see cref="M:System.Text.StringBuilder.ExpandByABlock(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.FormatError" />,
<see cref="M:System.Text.StringBuilder.set_Length(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)" />,
<see cref="M:System.ThrowHelper.CreateArgumentOutOfRangeException(System.ExceptionArgument)" />,
<see cref="M:System.ThrowHelper.CreateIndexOutOfRangeException" />,
<see cref="M:System.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="op_Explicit">
<MemberSignature Language="C#" Value="public static U op_Explicit (Mono.DocTest.Generic.GenericBase&lt;U&gt; list);" />
<MemberSignature Language="C#" Value="public static explicit operator U (Mono.DocTest.Generic.GenericBase&lt;U&gt; list);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig specialname !U op_Explicit(class Mono.DocTest.Generic.GenericBase`1&lt;!U&gt; list) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>

Some files were not shown because too many files have changed in this diff Show More