Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Objects
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19001/Objects
Modified Files:
TestObject.cs
Log Message:
SPRNET-453 - ConversionUtils should use ConvertFromInvariantString if failed to convert string value.
Index: TestObject.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Objects/TestObject.cs,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** TestObject.cs 17 Aug 2007 02:43:30 -0000 1.35
--- TestObject.cs 25 Aug 2007 16:08:36 -0000 1.36
***************
*** 25,28 ****
--- 25,29 ----
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
+ using System.Drawing;
using System.Globalization;
using System.IO;
***************
*** 296,299 ****
--- 297,306 ----
}
+
+ public Size Size
+ {
+ get { return size; }
+ set { size = value;}
+ }
#endregion
***************
*** 368,371 ****
--- 375,379 ----
private IApplicationContext applicationContext;
private string objectName;
+ private Size size;
#endregion
|