Logo

Programming-Idioms

History of Idiom 5 > diff from v351 to v352

Edit summary for version 352 by :
New Csharp implementation by user [dhe]

Version 351

2015-11-30, 12:37:24

Version 352

2016-02-05, 14:32:05

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Code
struct Point
        {
            public double x;
            public double y;
        };