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

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

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection Assembly.cs


From: Richard Baumann <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Reflection Assembly.cs, 1.28, 1.29
Date: Thu, 07 Aug 2003 10:02:12 -0400

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

Modified Files:
        Assembly.cs 
Log Message:
Implement xml serialization attributes and kill some assembly related 
TODOs.


Index: Assembly.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Reflection/Assembly.cs,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** Assembly.cs 29 May 2003 01:22:40 -0000      1.28
--- Assembly.cs 7 Aug 2003 14:02:09 -0000       1.29
***************
*** 561,573 ****
  
        // Get the location where this assembly was loaded from.
-       [TODO]
        public virtual String Location
                        {
                                get
                                {
!                                       // TODO
!                                       return null;
                                }
                        }
  
        // Get the assembly that a particular type resides in.
--- 561,576 ----
  
        // Get the location where this assembly was loaded from.
        public virtual String Location
                        {
                                get
                                {
!                                       String retval;
!                                       retval = GetLocation();
!                                       return (retval == null) ? "" : retval;
                                }
                        }
+ 
+       [MethodImpl(MethodImplOptions.InternalCall)]
+       extern private String GetLocation();
  
        // Get the assembly that a particular type resides in.





reply via email to

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