dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] pnetlib/runtime/System AttributeTargets.cs, 1.5, 1


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] pnetlib/runtime/System AttributeTargets.cs, 1.5, 1.6
Date: Mon, 24 Nov 2003 04:08:38 +0000

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System
In directory subversions:/tmp/cvs-serv17143/runtime/System

Modified Files:
        AttributeTargets.cs 
Log Message:


Add the "NewConstraintAttribute" class, and the attribute flag bit for
generic parameters.


Index: AttributeTargets.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/AttributeTargets.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** AttributeTargets.cs 16 Apr 2003 03:17:55 -0000      1.5
--- AttributeTargets.cs 24 Nov 2003 04:08:36 -0000      1.6
***************
*** 25,43 ****
  public enum AttributeTargets
  {
!       Assembly                = 0x0001,
!       Module                  = 0x0002,
!       Class                   = 0x0004,
!       Struct                  = 0x0008,
!       Enum                    = 0x0010,
!       Constructor             = 0x0020,
!       Method                  = 0x0040,
!       Property                = 0x0080,
!       Field                   = 0x0100,
!       Event                   = 0x0200,
!       Interface               = 0x0400,
!       Parameter               = 0x0800,
!       Delegate                = 0x1000,
!       ReturnValue             = 0x2000,
!       All                             = 0x3FFF
  
  }; // enum AttributeTargets
--- 25,48 ----
  public enum AttributeTargets
  {
!       Assembly                 = 0x0001,
!       Module                   = 0x0002,
!       Class                    = 0x0004,
!       Struct                   = 0x0008,
!       Enum                     = 0x0010,
!       Constructor              = 0x0020,
!       Method                   = 0x0040,
!       Property                 = 0x0080,
!       Field                    = 0x0100,
!       Event                    = 0x0200,
!       Interface                = 0x0400,
!       Parameter                = 0x0800,
!       Delegate                 = 0x1000,
!       ReturnValue              = 0x2000,
! #if CONFIG_GENERICS
!       GenericParameter = 0x4000,
!       All                              = 0x7FFF
! #else
!       All                              = 0x3FFF
! #endif
  
  }; // enum AttributeTargets





reply via email to

[Prev in Thread] Current Thread [Next in Thread]