Fixed to conform to Mono standards for incomplete functionality.
[mono.git] / mcs / class / Microsoft.VisualBasic / Microsoft.VisualBasic / DateAndTime.cs
1 //
2 // DateAndTime.cs
3 //
4 // Author:
5 //   Chris J Breisch (cjbreisch@altavista.net) 
6 //
7 // (C) 2002 Chris J Breisch
8 //
9
10 using System;
11
12 namespace Microsoft.VisualBasic \r
13 {
14         [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
15         sealed public class DateAndTime {
16                 // Declarations
17                 // Constructors
18                 // Properties
19                 [MonoTODO]
20                 public static System.String DateString {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
21                 [MonoTODO]
22                 public static System.DateTime Today {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
23                 [MonoTODO]
24                 public static System.Double Timer {  get { throw new NotImplementedException (); } }
25                 [MonoTODO]
26                 public static System.DateTime Now {  get { throw new NotImplementedException (); } }
27                 [MonoTODO]
28                 public static System.DateTime TimeOfDay {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
29                 [MonoTODO]
30                 public static System.String TimeString {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
31                 // Methods
32                 [MonoTODO]
33                 public static System.DateTime DateAdd (Microsoft.VisualBasic.DateInterval Interval, System.Double Number, System.DateTime DateValue) { throw new NotImplementedException (); }
34                 [MonoTODO]
35                 public static System.Int64 DateDiff (Microsoft.VisualBasic.DateInterval Interval, System.DateTime Date1, System.DateTime Date2, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { throw new NotImplementedException (); }
36                 [MonoTODO]
37                 public static System.Int32 DatePart (Microsoft.VisualBasic.DateInterval Interval, System.DateTime DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear FirstWeekOfYearValue) { throw new NotImplementedException (); }
38                 [MonoTODO]
39                 public static System.DateTime DateAdd (System.String Interval, System.Double Number, System.Object DateValue) { throw new NotImplementedException (); }
40                 [MonoTODO]
41                 public static System.Int64 DateDiff (System.String Interval, System.Object Date1, System.Object Date2, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { throw new NotImplementedException (); }
42                 [MonoTODO]
43                 public static System.Int32 DatePart (System.String Interval, System.Object DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { throw new NotImplementedException (); }
44                 [MonoTODO]
45                 public static System.DateTime DateSerial (System.Int32 Year, System.Int32 Month, System.Int32 Day) { throw new NotImplementedException (); }
46                 [MonoTODO]
47                 public static System.DateTime TimeSerial (System.Int32 Hour, System.Int32 Minute, System.Int32 Second) { throw new NotImplementedException (); }
48                 [MonoTODO]
49                 public static System.DateTime DateValue (System.String StringDate) { throw new NotImplementedException (); }
50                 [MonoTODO]
51                 public static System.DateTime TimeValue (System.String StringTime) { throw new NotImplementedException (); }
52                 [MonoTODO]
53                 public static System.Int32 Year (System.DateTime DateValue) { throw new NotImplementedException (); }
54                 [MonoTODO]
55                 public static System.Int32 Month (System.DateTime DateValue) { throw new NotImplementedException (); }
56                 [MonoTODO]
57                 public static System.Int32 Day (System.DateTime DateValue) { throw new NotImplementedException (); }
58                 [MonoTODO]
59                 public static System.Int32 Hour (System.DateTime TimeValue) { throw new NotImplementedException (); }
60                 [MonoTODO]
61                 public static System.Int32 Minute (System.DateTime TimeValue) { throw new NotImplementedException (); }
62                 [MonoTODO]
63                 public static System.Int32 Second (System.DateTime TimeValue) { throw new NotImplementedException (); }
64                 [MonoTODO]
65                 public static System.Int32 Weekday (System.DateTime DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek) { throw new NotImplementedException (); }
66                 [MonoTODO]
67                 public static System.String MonthName (System.Int32 Month, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean Abbreviate) { throw new NotImplementedException (); }
68                 [MonoTODO]
69                 public static System.String WeekdayName (System.Int32 Weekday, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean Abbreviate, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(0)] Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue) { throw new NotImplementedException (); }
70                 // Events
71         };
72 }