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/Private/DateTimeForma


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Private/DateTimeFormat DateTimeFormatter.cs, 1.5, 1.6
Date: Sat, 26 Jul 2003 01:43:33 -0400

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

Modified Files:
        DateTimeFormatter.cs 
Log Message:


Swap the order of some parameters to avoid ambiguities in compiler lookups.


Index: DateTimeFormatter.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Private/DateTimeFormat/DateTimeFormatter.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** DateTimeFormatter.cs        24 Jul 2003 06:11:29 -0000      1.5
--- DateTimeFormatter.cs        26 Jul 2003 05:43:31 -0000      1.6
***************
*** 29,33 ****
  {
        // Format a date value as a string using a particular pattern format.
!       public static String Format(DateTime date, String format,
                                                                
DateTimeFormatInfo info)
                        {
--- 29,33 ----
  {
        // Format a date value as a string using a particular pattern format.
!       public static String Format(String format, DateTime date,
                                                                
DateTimeFormatInfo info)
                        {
***************
*** 517,521 ****
                                        }
                                }
!                               return Format(date, format, info);
                        }
  
--- 517,521 ----
                                        }
                                }
!                               return Format(format, date, info);
                        }
  





reply via email to

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