Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Util
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17466/src/Spring/Spring.Core/Util
Modified Files:
ReflectionUtils.cs
Log Message:
SPRNET-794 - complete rework of Control interception
minor fixes to SpringAir demo
switched DynamicField implementation to using net-2.0's DynamicMethod technique
Index: ReflectionUtils.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Util/ReflectionUtils.cs,v
retrieving revision 1.58
retrieving revision 1.59
diff -C2 -d -r1.58 -r1.59
*** ReflectionUtils.cs 2 Apr 2008 16:21:22 -0000 1.58
--- ReflectionUtils.cs 13 May 2008 14:22:46 -0000 1.59
***************
*** 37,769 ****
namespace Spring.Util
{
! /// <summary>
! /// Various reflection related methods that are missing from the standard library.
! /// </summary>
! /// <author>Rod Johnson</author>
! /// <author>Juergen Hoeller</author>
! /// <author>Aleksandar Seovic (.NET)</author>
/// <author>Stan Dvoychenko (.NET)</author>
/// <author>Bruno Baia (.NET)</author>
[...2185 lines suppressed...]
! fieldList.AddRange(fields);
! CollectFieldsRecursive(type.BaseType, fieldList);
! }
!
! #endregion Field Cache Management for "MemberwiseCopy"
***************
*** 1416,1419 ****
#endregion
! }
}
\ No newline at end of file
--- 1471,1474 ----
#endregion
! }
}
\ No newline at end of file
|