mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 05:55:30 +00:00
25 lines
436 B
Plaintext
25 lines
436 B
Plaintext
|
// Gdk.Point.custom - Gdk Point class customizations
|
||
|
//
|
||
|
// Author: Jasper van Putten <Jaspervp@gmx.net>
|
||
|
//
|
||
|
// (c) 2002 Jasper van Putten
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// ToString method
|
||
|
/// </summary>
|
||
|
///
|
||
|
/// <remarks>
|
||
|
/// returns a string representation of this point
|
||
|
///
|
||
|
/// </remarks>
|
||
|
|
||
|
public override string ToString ()
|
||
|
{
|
||
|
return "Gdk.Point, x:" + this.x + ",y:" + this.y;
|
||
|
}
|
||
|
|
||
|
|