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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2002-05-26 05:48:01 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-05-26 05:48:01 +0400
commite4a0c81e0a2524acd3ed8b6e6266e913ccc00eba (patch)
tree4ffcf064ae8b811fa06563c5dcd94d6b436f4e57 /mcs/errors/errors.txt
parent1e8cb3adb019a2b4f1b9c00b48235e96dc2b94ea (diff)
Document error
svn path=/trunk/mcs/; revision=4939
Diffstat (limited to 'mcs/errors/errors.txt')
-rwxr-xr-xmcs/errors/errors.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/mcs/errors/errors.txt b/mcs/errors/errors.txt
index a6ce339f937..4f7050be037 100755
--- a/mcs/errors/errors.txt
+++ b/mcs/errors/errors.txt
@@ -58,4 +58,13 @@ numbers to match the Microsoft numbers:
-21 Bug in Microsoft compiler while applying named attribute for
StructLayout.CharSet value.
--22 Location of previous error \ No newline at end of file
+-22 Location of previous error
+
+-23 .NET runtime error when encoding attributes whose constructor
+ takes an object, but an enumeration value that is boxed is
+ passed.
+
+ Sample:
+ using System.ComponentModel;
+ [DefaultValue (CollectionChangeAction.Add)]
+ class X { static void Main () { } }