* Thread.cs: Make CurrentUICulture act the same as CurrentCulture for now. svn path=/trunk/mcs/; revision=6625
@@ -1,3 +1,8 @@
+2002-08-14 Dick Porter <[email protected]>
+
+ * Thread.cs: Make CurrentUICulture act the same as CurrentCulture
+ for now.
2002-08-12 Dietmar Maurer <[email protected]>
* ThreadAbortException.cs: impl. ExceptionState property.
@@ -226,10 +226,12 @@ namespace System.Threading
public CultureInfo CurrentUICulture {
get {
// FIXME
- return(null);
+ return(CurrentCulture);
}
set {
+ // FIXME
+ CurrentCulture=value;