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:
authorZoltan Varga <vargaz@gmail.com>2005-05-06 20:15:19 +0400
committerZoltan Varga <vargaz@gmail.com>2005-05-06 20:15:19 +0400
commit831a995417fe9f8cd597a28cd3b63dc8130ea150 (patch)
tree3b0d03c888239952e2ac4ac00c6848b043a3dd81 /mcs/class/corlib/System.Reflection/CustomAttributeData.cs
parent215c1cd77483d5c0018469905265023f3f8df7ee (diff)
2005-05-06 Zoltan Varga <vargaz@freemail.hu>
* CustomAttributeData.cs MethodBody.cs: Remove CLSCompliant (false) attributes. svn path=/trunk/mcs/; revision=44143
Diffstat (limited to 'mcs/class/corlib/System.Reflection/CustomAttributeData.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/CustomAttributeData.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
index 57a9526c331..112dc855f11 100644
--- a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
+++ b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
@@ -45,7 +45,6 @@ namespace System.Reflection {
}
[MonoTODO]
- [CLSCompliant (false)]
public IList<CustomAttributeTypedArgument> ConstructorArguments {
get {
throw new NotImplementedException ();
@@ -53,7 +52,6 @@ namespace System.Reflection {
}
[MonoTODO]
- [CLSCompliant (false)]
public IList<CustomAttributeNamedArgument> NamedArguments {
get {
throw new NotImplementedException ();
@@ -61,25 +59,21 @@ namespace System.Reflection {
}
[MonoTODO]
- [CLSCompliant (false)]
public static IList<CustomAttributeData> GetCustomAttributes (Assembly yarget) {
throw new NotImplementedException ();
}
[MonoTODO]
- [CLSCompliant (false)]
public static IList<CustomAttributeData> GetCustomAttributes (MemberInfo target) {
throw new NotImplementedException ();
}
[MonoTODO]
- [CLSCompliant (false)]
public static IList<CustomAttributeData> GetCustomAttributes (Module target) {
throw new NotImplementedException ();
}
[MonoTODO]
- [CLSCompliant (false)]
public static IList<CustomAttributeData> GetCustomAttributes (ParameterInfo target) {
throw new NotImplementedException ();
}