mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 16:45:35 +00:00
17 lines
403 B
Plaintext
17 lines
403 B
Plaintext
|
// Gtk.Calendar.Custom - Gtk Calendar class customizations
|
||
|
//
|
||
|
// Author:
|
||
|
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
|
||
|
//
|
||
|
// (c) 2003 Ximian, Inc. (http://www.ximian.com)
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
|
||
|
public DateTime GetDate ()
|
||
|
{
|
||
|
uint year, month, day;
|
||
|
GetDate (out year, out month, out day);
|
||
|
return new DateTime ((int) year, (int) month + 1, (int) day);
|
||
|
}
|
||
|
|