Imported Upstream version 4.2.0.179

Former-commit-id: 0a113cb3a6feb7873f632839b1307cc6033cd595
This commit is contained in:
Xamarin Public Jenkins
2015-08-26 07:17:56 -04:00
committed by Jo Shields
parent 183bba2c9a
commit 6992685b86
7507 changed files with 90259 additions and 657307 deletions

View File

@@ -45,10 +45,11 @@ net_4_5_dirs := \
security \
mdbrebase \
ikdasm \
symbolicate
mono-symbolicate
build_SUBDIRS = gacutil security culevel
net_4_5_SUBDIRS := $(net_4_5_dirs)
net_4_5_SUBDIRS = gacutil
net_4_5_PARALLEL_SUBDIRS = $(net_4_5_dirs)
SUBDIRS = $(basic_SUBDIRS) $(net_4_5_dirs)

View File

@@ -26,8 +26,11 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Linq;
using System.IO;
using System.Reflection;
using System.Xml;
using System.Xml.XPath;
using Mono.Cecil;
@@ -44,10 +47,37 @@ namespace Mono.Linker.Steps {
protected override void Process ()
{
foreach (string name in Assembly.GetExecutingAssembly ().GetManifestResourceNames ()) {
if (!IsReferenced (GetAssemblyName (name)))
if (Path.GetExtension (name) != ".xml" || !IsReferenced (GetAssemblyName (name)))
continue;
Context.Pipeline.AddStepAfter (typeof (TypeMapStep), GetResolveStep (name));
try {
if (Context.LogInternalExceptions)
Console.WriteLine ("Processing resource linker descriptor: {0}", name);
Context.Pipeline.AddStepAfter (typeof (TypeMapStep), GetResolveStep (name));
} catch (XmlException ex) {
/* This could happen if some broken XML file is included. */
if (Context.LogInternalExceptions)
Console.WriteLine ("Error processing {0}: {1}", name, ex);
}
}
foreach (var rsc in Context.GetAssemblies ()
.SelectMany (asm => asm.Modules)
.SelectMany (mod => mod.Resources)
.Where (res => res.ResourceType == ResourceType.Embedded)
.Where (res => Path.GetExtension (res.Name) == ".xml")
.Where (res => IsReferenced (GetAssemblyName (res.Name)))
.Cast<EmbeddedResource> ()) {
try {
if (Context.LogInternalExceptions)
Console.WriteLine ("Processing embedded resource linker descriptor: {0}", rsc.Name);
Context.Pipeline.AddStepAfter (typeof (TypeMapStep), GetExternalResolveStep (rsc));
} catch (XmlException ex) {
/* This could happen if some broken XML file is embedded. */
if (Context.LogInternalExceptions)
Console.WriteLine ("Error processing {0}: {1}", rsc.Name, ex);
}
}
}
@@ -69,11 +99,23 @@ namespace Mono.Linker.Steps {
return false;
}
static ResolveFromXmlStep GetExternalResolveStep (EmbeddedResource resource)
{
return new ResolveFromXmlStep (GetExternalDescriptor (resource));
}
static ResolveFromXmlStep GetResolveStep (string descriptor)
{
return new ResolveFromXmlStep (GetDescriptor (descriptor));
}
static XPathDocument GetExternalDescriptor (EmbeddedResource resource)
{
using (var sr = new StreamReader (resource.GetResourceStream ())) {
return new XPathDocument (new StringReader (sr.ReadToEnd ()));
}
}
static XPathDocument GetDescriptor (string descriptor)
{
using (StreamReader sr = new StreamReader (GetResource (descriptor))) {

View File

@@ -346,9 +346,25 @@ namespace Mono.Linker.Steps {
// even if we (just before saving) will resolve all type references (bug #26752)
void MarkWithResolvedScope (TypeReference type)
{
// we cannot set the Scope of a TypeSpecification so there's no point in resolving it
if ((type == null) || (type is TypeSpecification))
if (type == null)
return;
// a GenericInstanceType can could contains generic arguments with scope that
// needs to be updated out of the PCL facade (bug #28823)
var git = (type as GenericInstanceType);
if ((git != null) && git.HasGenericArguments) {
foreach (var ga in git.GenericArguments)
MarkWithResolvedScope (ga);
return;
}
// we cannot set the Scope of a TypeSpecification but it's element type can be set
// e.g. System.String[] -> System.String
var ts = (type as TypeSpecification);
if (ts != null) {
MarkWithResolvedScope (ts.GetElementType ());
return;
}
var td = type.Resolve ();
if (td != null)
type.Scope = td.Scope;
@@ -498,6 +514,8 @@ namespace Mono.Linker.Steps {
MarkMethodsIf (type.Methods, IsStaticConstructorPredicate);
}
DoAdditionalTypeProcessing (type);
Annotations.Mark (type);
ApplyPreserveInfo (type);
@@ -505,6 +523,11 @@ namespace Mono.Linker.Steps {
return type;
}
// Allow subclassers to mark additional things when marking a method
protected virtual void DoAdditionalTypeProcessing (TypeDefinition method)
{
}
void MarkTypeSpecialCustomAttributes (TypeDefinition type)
{
if (!type.HasCustomAttributes)
@@ -554,17 +577,21 @@ namespace Mono.Linker.Steps {
return argument != null;
}
protected void MarkNamedMethod (TypeDefinition type, string method_name)
protected int MarkNamedMethod (TypeDefinition type, string method_name)
{
if (!type.HasMethods)
return;
return 0;
int count = 0;
foreach (MethodDefinition method in type.Methods) {
if (method.Name != method_name)
continue;
MarkMethod (method);
count++;
}
return count;
}
void MarkSoapHeader (MethodDefinition method, CustomAttribute attribute)
@@ -941,11 +968,18 @@ namespace Mono.Linker.Steps {
if (ShouldParseMethodBody (method))
MarkMethodBody (method.Body);
DoAdditionalMethodProcessing (method);
Annotations.Mark (method);
ApplyPreserveMethods (method);
}
// Allow subclassers to mark additional things when marking a method
protected virtual void DoAdditionalMethodProcessing (MethodDefinition method)
{
}
void MarkBaseMethods (MethodDefinition method)
{
IList base_methods = Annotations.GetBaseMethods (method);

View File

@@ -57,6 +57,12 @@ namespace Mono.Linker.Steps {
{
XPathNavigator nav = _document.CreateNavigator ();
nav.MoveToFirstChild ();
// This step can be created with XML files that aren't necessarily
// linker descriptor files. So bail if we don't have a <linker> element.
if (nav.LocalName != "linker")
return;
ProcessAssemblies (Context, nav.SelectChildren ("assembly", _ns));
}

View File

@@ -42,8 +42,17 @@ namespace Mono.Linker.Steps {
protected override void Process ()
{
assemblies = Context.GetAssemblies ();
foreach (var assembly in assemblies)
foreach (var assembly in assemblies) {
SweepAssembly (assembly);
if (Annotations.GetAction (assembly) == AssemblyAction.Copy) {
// Copy assemblies can still contain Type references with
// type forwarders from Delete assemblies
// thus try to resolve all the type references and see
// if some changed the scope. if yes change the action to Save
if (ResolveAllTypeReferences (assembly))
Annotations.SetAction (assembly, AssemblyAction.Save);
}
}
}
void SweepAssembly (AssemblyDefinition assembly)
@@ -124,15 +133,16 @@ namespace Mono.Linker.Steps {
}
}
void ResolveAllTypeReferences (AssemblyDefinition assembly)
bool ResolveAllTypeReferences (AssemblyDefinition assembly)
{
if (resolvedTypeReferences == null)
resolvedTypeReferences = new HashSet<AssemblyDefinition> ();
if (resolvedTypeReferences.Contains (assembly))
return;
return false;
resolvedTypeReferences.Add (assembly);
var hash = new Dictionary<TypeReference,IMetadataScope> ();
bool changes = false;
foreach (TypeReference tr in assembly.MainModule.GetTypeReferences ()) {
if (hash.ContainsKey (tr))
@@ -141,8 +151,11 @@ namespace Mono.Linker.Steps {
IMetadataScope scope = tr.Scope;
// at this stage reference might include things that can't be resolved
// and if it is (resolved) it needs to be kept only if marked (#16213)
if ((td != null) && Annotations.IsMarked (td))
if ((td != null) && Annotations.IsMarked (td)) {
scope = assembly.MainModule.Import (td).Scope;
if (tr.Scope != scope)
changes = true;
}
hash.Add (tr, scope);
}
if (assembly.MainModule.HasExportedTypes) {
@@ -163,6 +176,8 @@ namespace Mono.Linker.Steps {
foreach (var e in hash) {
e.Key.Scope = e.Value;
}
return changes;
}
void SweepType (TypeDefinition type)

View File

@@ -179,81 +179,118 @@ namespace Mono.Linker.Steps {
if (!type.HasMethods)
return null;
foreach (MethodDefinition candidate in type.Methods)
if (MethodMatch (candidate, method))
Dictionary<string,string> gp = null;
foreach (MethodDefinition candidate in type.Methods) {
if (MethodMatch (candidate, method, ref gp))
return candidate;
if (gp != null)
gp.Clear ();
}
return null;
}
static bool MethodMatch (MethodDefinition candidate, MethodDefinition method)
static bool MethodMatch (MethodDefinition candidate, MethodDefinition method, ref Dictionary<string,string> genericParameters)
{
if (!candidate.IsVirtual)
return false;
if (candidate.HasParameters != method.HasParameters)
return false;
if (candidate.Name != method.Name)
return false;
if (!TypeMatch (candidate.ReturnType, method.ReturnType))
if (candidate.HasGenericParameters != method.HasGenericParameters)
return false;
if (candidate.Parameters.Count != method.Parameters.Count)
// we need to track what the generic parameter represent - as we cannot allow it to
// differ between the return type or any parameter
if (!TypeMatch (candidate.ReturnType, method.ReturnType, ref genericParameters))
return false;
for (int i = 0; i < candidate.Parameters.Count; i++)
if (!TypeMatch (candidate.Parameters [i].ParameterType, method.Parameters [i].ParameterType))
if (!candidate.HasParameters)
return true;
var cp = candidate.Parameters;
var mp = method.Parameters;
if (cp.Count != mp.Count)
return false;
for (int i = 0; i < cp.Count; i++) {
if (!TypeMatch (cp [i].ParameterType, mp [i].ParameterType, ref genericParameters))
return false;
}
return true;
}
static bool TypeMatch (IModifierType a, IModifierType b)
static bool TypeMatch (IModifierType a, IModifierType b, ref Dictionary<string,string> gp)
{
if (!TypeMatch (a.ModifierType, b.ModifierType))
if (!TypeMatch (a.ModifierType, b.ModifierType, ref gp))
return false;
return TypeMatch (a.ElementType, b.ElementType);
return TypeMatch (a.ElementType, b.ElementType, ref gp);
}
static bool TypeMatch (TypeSpecification a, TypeSpecification b)
static bool TypeMatch (TypeSpecification a, TypeSpecification b, ref Dictionary<string,string> gp)
{
if (a is GenericInstanceType)
return TypeMatch ((GenericInstanceType) a, (GenericInstanceType) b);
var gita = a as GenericInstanceType;
if (gita != null)
return TypeMatch (gita, (GenericInstanceType) b, ref gp);
if (a is IModifierType)
return TypeMatch ((IModifierType) a, (IModifierType) b);
var mta = a as IModifierType;
if (mta != null)
return TypeMatch (mta, (IModifierType) b, ref gp);
return TypeMatch (a.ElementType, b.ElementType);
return TypeMatch (a.ElementType, b.ElementType, ref gp);
}
static bool TypeMatch (GenericInstanceType a, GenericInstanceType b)
static bool TypeMatch (GenericInstanceType a, GenericInstanceType b, ref Dictionary<string,string> gp)
{
if (!TypeMatch (a.ElementType, b.ElementType))
if (!TypeMatch (a.ElementType, b.ElementType, ref gp))
return false;
if (a.GenericArguments.Count != b.GenericArguments.Count)
if (a.HasGenericArguments != b.HasGenericArguments)
return false;
if (a.GenericArguments.Count == 0)
if (!a.HasGenericArguments)
return true;
for (int i = 0; i < a.GenericArguments.Count; i++)
if (!TypeMatch (a.GenericArguments [i], b.GenericArguments [i]))
var gaa = a.GenericArguments;
var gab = b.GenericArguments;
if (gaa.Count != gab.Count)
return false;
for (int i = 0; i < gaa.Count; i++) {
if (!TypeMatch (gaa [i], gab [i], ref gp))
return false;
}
return true;
}
static bool TypeMatch (TypeReference a, TypeReference b)
static bool TypeMatch (TypeReference a, TypeReference b, ref Dictionary<string,string> gp)
{
if (a is GenericParameter)
return true;
var gpa = a as GenericParameter;
if (gpa != null) {
if (gp == null)
gp = new Dictionary<string, string> ();
string match;
if (!gp.TryGetValue (gpa.FullName, out match)) {
// first use, we assume it will always be used this way
gp.Add (gpa.FullName, b.ToString ());
return true;
}
// re-use, it should match the previous usage
return match == b.ToString ();
}
if (a is TypeSpecification || b is TypeSpecification) {
if (a.GetType () != b.GetType ())
return false;
return TypeMatch ((TypeSpecification) a, (TypeSpecification) b);
return TypeMatch ((TypeSpecification) a, (TypeSpecification) b, ref gp);
}
return a.FullName == b.FullName;

View File

@@ -93,6 +93,8 @@ namespace Mono.Linker {
set { _symbolWriterProvider = value; }
}
public bool LogInternalExceptions { get; set; } = false;
public LinkContext (Pipeline pipeline)
: this (pipeline, new AssemblyResolver ())
{

View File

@@ -11,130 +11,133 @@ using Mono.Options;
namespace Mono.MdbRebase
{
class Settings
{
public string OutputDirectory { get; set; }
public string InputPattern { get; set; }
public string OutputPattern { get; set; }
public bool InputPatternIsRegex { get; set; }
public bool FileNamesOnly { get; set; }
public bool Verbose { get; set; }
Regex inputPatternRegex;
public bool Validate ()
class Settings
{
return InputPattern != null && OutputPattern != null;
public string OutputDirectory { get; set; }
public string InputPattern { get; set; }
public string OutputPattern { get; set; }
public bool InputPatternIsRegex { get; set; }
public bool FileNamesOnly { get; set; }
public bool Verbose { get; set; }
public bool Quiet { get; set; }
Regex inputPatternRegex;
public bool Validate ()
{
return InputPattern != null && OutputPattern != null;
}
public string Replace (string input)
{
if (InputPatternIsRegex) {
if (inputPatternRegex == null)
inputPatternRegex = new Regex (InputPattern);
return inputPatternRegex.Replace (input, OutputPattern);
} else {
if (input.StartsWith (InputPattern))
return OutputPattern + input.Substring (InputPattern.Length);
}
return input;
}
}
public string Replace (string input)
class MdbRebase
{
if (InputPatternIsRegex) {
if (inputPatternRegex == null)
inputPatternRegex = new Regex (InputPattern);
return inputPatternRegex.Replace (input, OutputPattern);
} else {
if (input.StartsWith (InputPattern))
return OutputPattern + input.Substring (InputPattern.Length);
Settings settings;
public MdbRebase (Settings settings)
{
this.settings = settings;
}
return input;
}
}
public void RewriteMdbFile (string inputFile)
{
if (!settings.Quiet)
Console.WriteLine ("Processing {0}", inputFile);
var input = MonoSymbolFile.ReadSymbolFile (inputFile);
class MdbRebase
{
Settings settings;
var output = new MonoSymbolFile ();
public MdbRebase (Settings settings)
{
this.settings = settings;
}
foreach (var s in input.Sources) {
var newFileName = settings.FileNamesOnly
? Path.Combine (Path.GetDirectoryName (s.FileName), settings.Replace (Path.GetFileName (s.FileName)))
: settings.Replace (s.FileName);
public void RewriteMdbFile (string inputFile)
{
Console.WriteLine ("Processing {0}", inputFile);
var input = MonoSymbolFile.ReadSymbolFile (inputFile);
if (settings.Verbose)
Console.WriteLine ("{0} -> {1}", s.FileName, newFileName);
var output = new MonoSymbolFile ();
s.FileName = newFileName;
output.AddSource (s);
}
foreach (var s in input.Sources) {
var newFileName = settings.FileNamesOnly
? Path.Combine (Path.GetDirectoryName (s.FileName), settings.Replace (Path.GetFileName (s.FileName)))
: settings.Replace (s.FileName);
if (settings.Verbose)
Console.WriteLine ("{0} -> {1}", s.FileName, newFileName);
s.FileName = newFileName;
output.AddSource (s);
}
foreach (var cu in input.CompileUnits) {
cu.ReadAll ();
output.AddCompileUnit (cu);
}
foreach (var m in input.Methods) {
m.ReadAll ();
output.AddMethod (m);
}
var mdbName = new FileInfo (inputFile).Name;
var tmpMdb = Path.Combine (Path.GetTempPath (), mdbName);
var finalMdb = inputFile;
if (settings.OutputDirectory != null)
finalMdb = Path.Combine (settings.OutputDirectory, mdbName);
using (var stream = new FileStream (tmpMdb, FileMode.Create)) {
output.CreateSymbolFile (input.Guid, stream);
}
input.Dispose ();
File.Delete (finalMdb);
File.Move (tmpMdb, finalMdb);
}
}
class Driver {
static void Usage (OptionSet options)
{
Console.WriteLine (@"Usage: mdbrebase [options] <ASSEMBLY_TO_FIX>");
if (options != null) {
Console.WriteLine ();
Console.WriteLine ("Available options:");
options.WriteOptionDescriptions (Console.Out);
}
Console.WriteLine ();
foreach (var cu in input.CompileUnits) {
cu.ReadAll ();
output.AddCompileUnit (cu);
}
Environment.Exit (-1);
foreach (var m in input.Methods) {
m.ReadAll ();
output.AddMethod (m);
}
var mdbName = new FileInfo (inputFile).Name;
var tmpMdb = Path.GetTempFileName ();
var finalMdb = inputFile;
if (settings.OutputDirectory != null)
finalMdb = Path.Combine (settings.OutputDirectory, mdbName);
using (var stream = new FileStream (tmpMdb, FileMode.Create)) {
output.CreateSymbolFile (input.Guid, stream);
}
input.Dispose ();
File.Delete (finalMdb);
File.Move (tmpMdb, finalMdb);
}
}
static int Main (string[] args) {
var s = new Settings ();
bool showHelp = false;
class Driver {
static void Usage (OptionSet options)
{
Console.WriteLine (@"Usage: mdbrebase [options] <ASSEMBLY_TO_FIX>");
if (options != null) {
Console.WriteLine ();
Console.WriteLine ("Available options:");
options.WriteOptionDescriptions (Console.Out);
}
Console.WriteLine ();
Environment.Exit (-1);
}
var p = new OptionSet () {
{ "d=|output=", "Output directory to the mdb file, replace existing one if ommited", v => s.OutputDirectory = v },
{ "v|verbose", "Be verbose with output (show individual path rewrites)", v => s.Verbose = true },
{ "f|filenames", "Only operate on file names, not full absolute paths", v => s.FileNamesOnly = true },
{ "r|regex", "Input pattern is a regular expression", v => s.InputPatternIsRegex = true },
{ "i=|input-pattern=", "Input pattern to replace (must not be a prefix to output-pattern)(required)", v => s.InputPattern = v },
{ "o=|output-pattern=", "Output pattern to replace (required)", v => s.OutputPattern = v },
{ "h|?|help", v => showHelp = true },
};
static int Main (string[] args) {
var s = new Settings ();
bool showHelp = false;
List <string> extra = p.Parse (args);
var p = new OptionSet () {
{ "d=|output=", "Output directory to the mdb file, replace existing one if ommited", v => s.OutputDirectory = v },
{ "v|verbose", "Be verbose with output (show individual path rewrites)", v => s.Verbose = true },
{ "f|filenames", "Only operate on file names, not full absolute paths", v => s.FileNamesOnly = true },
{ "r|regex", "Input pattern is a regular expression", v => s.InputPatternIsRegex = true },
{ "i=|input-pattern=", "Input pattern to replace (must not be a prefix to output-pattern)(required)", v => s.InputPattern = v },
{ "o=|output-pattern=", "Output pattern to replace (required)", v => s.OutputPattern = v },
{ "q|quiet", "Be quiet with output (not show anything but errors)", v => s.Quiet = true },
{ "h|?|help", v => showHelp = true },
};
if (showHelp || extra.Count < 1 || !s.Validate ())
Usage (p);
List <string> extra = p.Parse (args);
var m = new MdbRebase (s);
foreach (var a in extra)
m.RewriteMdbFile (a);
return 0;
if (showHelp || extra.Count < 1 || !s.Validate ())
Usage (p);
var m = new MdbRebase (s);
foreach (var a in extra)
m.RewriteMdbFile (a);
return 0;
}
}
}
}

View File

@@ -47,6 +47,7 @@ MDOC_RESOURCES = \
Resources/stylesheet.xsl
MDOC_TEST_FILES = \
Test/CLILibraryTypes.dtd \
Test/DocTest-v1.cs \
Test/DocTest-v2.patch \
Test/msxdoc-expected.importslashdoc.xml \
@@ -90,6 +91,12 @@ cleanup:
-rm -Rf Test/en.actual Test/html.actual
-rm -f monodocer1.exe*
Test/DocTest-addNonGeneric.dll:
$(CSCOMPILE) $(TEST_CSCFLAGS) -debug -unsafe -target:library -out:$@ Test/DocTest-addNonGeneric.cs
Test/DocTest-addNonGeneric-v2.dll:
$(CSCOMPILE) $(TEST_CSCFLAGS) -debug -unsafe -target:library -out:$@ Test/DocTest-addNonGeneric.cs /define:V2
Test/DocTest-DropNS-classic-secondary.dll:
@echo $(value @)
$(CSCOMPILE) $(TEST_CSCFLAGS) -debug -unsafe -target:library -out:$@ Test/DocTest-DropNS-classic-secondary.cs
@@ -120,6 +127,19 @@ Test/DocTest.dll-v2:
-rm -f Test/DocTest.dll
$(MAKE) TEST_CSCFLAGS=$(TEST_CSCFLAGS) Test/DocTest.dll
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
# 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
diff --exclude=.svn -rup 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
@@ -320,4 +340,6 @@ check-doc-tools-update: check-monodocer-since-update \
check-mdoc-export-msxdoc-update \
check-mdoc-validate-update
check: check-doc-tools \
check-doc-tools-update

View File

@@ -1 +1 @@
842a4ae439f36136fbb90c5e5942dcf8b5d56cbb
8cdf5e7e519470d8bab0ee646a7c8b18984068b4

View File

@@ -0,0 +1,154 @@
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT AssemblyCulture (#PCDATA)>
<!ELEMENT AssemblyInfo (AssemblyName, ((AssemblyPublicKey, AssemblyVersion) | (AssemblyVersion, AssemblyPublicKey)), AssemblyCulture, Attributes)>
<!ELEMENT AssemblyName (#PCDATA)>
<!ELEMENT AssemblyPublicKey (#PCDATA)>
<!ELEMENT AssemblyVersion (#PCDATA)>
<!ELEMENT Attribute (AttributeName, Excluded?, ExcludedTypeName?, ExcludedLibraryName?)>
<!ELEMENT AttributeName (#PCDATA)>
<!ELEMENT Attributes (Attribute*)>
<!ELEMENT Base (BaseTypeName?, ExcludedBaseTypeName?, ExcludedLibraryName?)>
<!ELEMENT BaseTypeName (#PCDATA)>
<!ELEMENT Constraints (ParameterAttribute+, BaseTypeName?) >
<!ELEMENT Docs ((summary?, altmember?, altcompliant?, typeparam*, param*, returns?, value?, exception*, threadsafe?, remarks?, example?, permission?) | (typeparam*, param*, summary?, altmember?, altcompliant?, returns?, value?, exception*, threadsafe?, remarks?, example?, permission?) | (summary?, altmember?, altcompliant?, typeparam*, param*, returns?, value?, remarks?, threadsafe?, exception*, example?, permission?) | (typeparam*, param*, summary?, altmember?, altcompliant?, returns?, value?, remarks?, threadsafe?, exception*, example?, permission?))>
<!ELEMENT Excluded (#PCDATA)>
<!ELEMENT ExcludedBaseTypeName (#PCDATA)>
<!ELEMENT ExcludedLibrary (#PCDATA)>
<!ELEMENT ExcludedLibraryName (#PCDATA)>
<!ELEMENT ExcludedTypeName (#PCDATA)>
<!ELEMENT Interface (InterfaceName, Excluded?)>
<!ELEMENT InterfaceName (#PCDATA)>
<!ELEMENT Interfaces (Interface*)>
<!ELEMENT Libraries (Types+)>
<!ELEMENT Member (MemberSignature+, MemberType, Attributes?, ReturnValue, TypeParameters?, Parameters, MemberValue?, Docs, Excluded?, ExcludedLibrary*)>
<!ATTLIST Member
MemberName CDATA #REQUIRED
>
<!ELEMENT MemberOfLibrary (#PCDATA)>
<!ELEMENT MemberSignature EMPTY>
<!ATTLIST MemberSignature
Language CDATA #REQUIRED
Value CDATA #REQUIRED
>
<!ELEMENT MemberType (#PCDATA)>
<!ELEMENT MemberValue (#PCDATA)>
<!ELEMENT Members (Member*)>
<!ELEMENT PRE EMPTY>
<!ELEMENT Parameter (Attributes?)>
<!ATTLIST Parameter
Name NMTOKEN #REQUIRED
Type CDATA #REQUIRED
RefType CDATA #IMPLIED
>
<!ELEMENT ParameterAttribute (#PCDATA) >
<!ELEMENT Parameters (Parameter*)>
<!ELEMENT ReturnType (#PCDATA)>
<!ELEMENT ReturnValue (ReturnType?)>
<!ELEMENT SPAN (#PCDATA | para | paramref | SPAN | see | block)*>
<!ELEMENT ThreadingSafetyStatement (#PCDATA)>
<!ELEMENT Type (TypeSignature+, MemberOfLibrary, AssemblyInfo, ThreadingSafetyStatement?, TypeParameters?, ((Docs, Parameters?, ReturnValue?, Base, Interfaces?) | (Base, Interfaces?, Parameters?, ReturnValue?, Docs)) , Attributes?, Members?, TypeExcluded)>
<!ATTLIST Type
Name CDATA #REQUIRED
FullName CDATA #REQUIRED
FullNameSP CDATA #REQUIRED
>
<!ELEMENT TypeExcluded (#PCDATA)>
<!ELEMENT TypeParameter (Constraints*) >
<!ATTLIST TypeParameter
Name CDATA #REQUIRED
>
<!ELEMENT TypeParameters (TypeParameter*)>
<!ELEMENT TypeSignature EMPTY>
<!ATTLIST TypeSignature
Language CDATA #REQUIRED
Value CDATA #REQUIRED
>
<!ELEMENT Types (Type+)>
<!ATTLIST Types
Library NMTOKEN #REQUIRED
>
<!ELEMENT altcompliant EMPTY>
<!ATTLIST altcompliant
cref CDATA #REQUIRED
>
<!ELEMENT altmember EMPTY>
<!ATTLIST altmember
cref CDATA #REQUIRED
>
<!ELEMENT block (#PCDATA | see | para | paramref | list | block | c | subscript | code | sup | pi | plusminus | whitespace)*>
<!ATTLIST block
subset CDATA #REQUIRED
type NMTOKEN #REQUIRED
>
<!ELEMENT c (#PCDATA | para | paramref | code | see)*>
<!ELEMENT code (#PCDATA)>
<!ATTLIST code
lang CDATA #IMPLIED
>
<!ELEMENT codelink EMPTY>
<!ATTLIST codelink
SampleID CDATA #REQUIRED
SnippetID CDATA #REQUIRED
>
<!ELEMENT description (#PCDATA | SPAN | paramref | para | see | c | permille | block | sub | plusminus)*>
<!ELEMENT example (#PCDATA | para | code | c | codelink | list | see)*>
<!ELEMENT exception (#PCDATA | paramref | see | para | SPAN | block)*>
<!ATTLIST exception
cref CDATA #REQUIRED
>
<!ELEMENT geq EMPTY>
<!ELEMENT i (#PCDATA)>
<!ELEMENT infinity EMPTY>
<!ELEMENT item (term, description*)>
<!ELEMENT leq EMPTY>
<!ELEMENT list (listheader?, item*)>
<!ATTLIST list
type NMTOKEN #REQUIRED
>
<!ELEMENT listheader (term, description+)>
<!ELEMENT onequarter EMPTY>
<!ELEMENT para (#PCDATA | see | block | paramref | c | onequarter | superscript | sup | permille | SPAN | list | pi | theta | sub | leq | geq | plusminus | whitespace)*>
<!ELEMENT param (#PCDATA | c | paramref | see | block | para | SPAN | geq | leq | whitespace)*>
<!ATTLIST param
name CDATA #REQUIRED
>
<!ELEMENT paramref EMPTY>
<!ATTLIST paramref
name CDATA #REQUIRED
>
<!ELEMENT permille EMPTY>
<!ELEMENT permission (#PCDATA | see | paramref | para | block)*>
<!ATTLIST permission
cref CDATA #REQUIRED
>
<!ELEMENT pi EMPTY>
<!ELEMENT plusminus EMPTY>
<!ELEMENT pre EMPTY>
<!ELEMENT remarks (#PCDATA | para | block | list | c | paramref | see | pre | SPAN | code | PRE)*>
<!ELEMENT returns (#PCDATA | para | list | paramref | see)*>
<!ELEMENT see EMPTY>
<!ATTLIST see
cref CDATA #IMPLIED
langword CDATA #IMPLIED
qualify CDATA #IMPLIED
>
<!ELEMENT sub (#PCDATA | paramref)*>
<!ELEMENT subscript EMPTY>
<!ATTLIST subscript
term CDATA #REQUIRED
>
<!ELEMENT summary (#PCDATA | para | see | block | list)*>
<!ELEMENT sup (#PCDATA | i | paramref)*>
<!ELEMENT superscript EMPTY>
<!ATTLIST superscript
term CDATA #REQUIRED
>
<!ELEMENT term (#PCDATA | block | see | paramref | para | c | sup | pi | theta | leq | geq | plusminus | whitespace)*>
<!ELEMENT theta EMPTY>
<!ELEMENT threadsafe (para+)>
<!ELEMENT typeparam (#PCDATA | c | paramref | see | block | para | SPAN | geq | leq | whitespace)*>
<!ATTLIST typeparam
name CDATA #REQUIRED
>
<!ELEMENT value (#PCDATA | para | list | see)*>
<!ELEMENT whitespace EMPTY>

View File

@@ -77,73 +77,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="MyEvent">
@@ -157,73 +226,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="op_Explicit">

View File

@@ -100,11 +100,11 @@
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="Process&lt;T&gt;">
@@ -128,7 +128,7 @@
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="UseHelper&lt;T,U,V&gt;">

View File

@@ -87,73 +87,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="array1">
@@ -328,73 +397,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="DynamicE2">

View File

@@ -94,73 +94,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="MyEvent">
@@ -177,73 +246,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="op_Explicit">

View File

@@ -127,11 +127,11 @@
<c>M:Mono.DocTest.UseLists.Process(System.Collections.Generic.List{System.Predicate{System.Int32}})</c>.</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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="Process&lt;T&gt;">
@@ -159,7 +159,7 @@
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="UseHelper&lt;T,U,V&gt;">

View File

@@ -127,73 +127,142 @@
<remarks>
<c>E:Mono.DocTest.Widget.AnotherEvent</c>.</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="array1">
@@ -411,73 +480,142 @@
<c>E:Mono.DocTest.Widget.DynamicE1</c>
</remarks>
<exception cref="T:System.ArgumentException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="DynamicE2">

View File

@@ -112,73 +112,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="MyEvent">
@@ -196,73 +265,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="op_Explicit">

View File

@@ -122,11 +122,11 @@
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="Process&lt;T&gt;">
@@ -154,7 +154,7 @@
<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.Check.SourceAndPredicate(System.Object,System.Object)" /></exception>
<see cref="M:System.Linq.Error.ArgumentNull(System.String)" /></exception>
</Docs>
</Member>
<Member MemberName="UseHelper&lt;T,U,V&gt;">

View File

@@ -109,73 +109,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="array1">
@@ -394,73 +463,142 @@
<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.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentNullException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArgumentOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.ArrayTypeMismatchException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.FormatException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.IndexOutOfRangeException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.InvalidOperationException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.MulticastNotSupportedException">To be added; from:
<see cref="M:System.Delegate.CombineImpl(System.Delegate)" /></exception>
<exception cref="T:System.OutOfMemoryException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Concat(System.String,System.String)" />,
<see cref="M:System.String.FormatHelper(System.Text.StringBuilder,System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.String.InternalSetChar(System.Int32,System.Char)" />,
<see cref="M:System.String.ParseFormatSpecifier(System.String,System.Int32@,System.Int32@,System.Int32@,System.Boolean@,System.String@)" />,
<see cref="M:System.String.Substring(System.Int32,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.InternalEnsureCapacity(System.Int32)" /></exception>
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
<exception cref="T:System.RankException">To be added; from:
<see cref="M:System.Array.Copy(System.Array,System.Array,System.Int32)" />,
<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.Remove(System.Delegate,System.Delegate)" />,
<see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])" />,
<see cref="M:System.String.Format(System.String,System.Object[])" />,
<see cref="M:System.String.get_Chars(System.Int32)" />,
<see cref="M:System.Text.StringBuilder.Append(System.Char,System.Int32)" />,
<see cref="M:System.Text.StringBuilder.AppendFormat(System.IFormatProvider,System.String,System.Object[])" />,
<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.Type.GetGenericParameterConstraints" /></exception>
</Docs>
</Member>
<Member MemberName="DynamicE2">

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