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>2001-06-23 01:18:06 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-06-23 01:18:06 +0400
commit995519a513f796d7964387ede6f1714e0d6615ee (patch)
tree82af0f940da09d24074beea52775cf7d3c937764 /mcs/class/README
parent64b3b484ac8079b4558f4119c24e708575056b8b (diff)
Further details
svn path=/trunk/mcs/; revision=28
Diffstat (limited to 'mcs/class/README')
-rw-r--r--mcs/class/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/mcs/class/README b/mcs/class/README
index 96b0a367dbc..ea41b274314 100644
--- a/mcs/class/README
+++ b/mcs/class/README
@@ -2,3 +2,25 @@ The class libraries are grouped together in the assemblies they belong.
Each directory here represents an assembly, and inside each directory we
divide the code based on the namespace they implement.
+
+* Missing implementation bits
+
+ If you implement a class and you are missing implementation bits,
+ please put in the code the word "TODO" and a description of what
+ is missing to be implemented.
+
+* Tagging buggy code
+
+ If there is a bug in your implementation tag the problem by using
+ the word "FIXME" in the code, together with a description of the
+ problem.
+
+ Do not use XXX or obscure descriptions, because otherwise people
+ will not be able to understand what you mean.
+
+* Coding consideration
+
+ Use 8 space tabs for writing your code (hopefully we can keep
+ this consistent). If you are modifying someone else's code, try
+ to keep the coding style similar.
+