11 lines
192 B
Plaintext
11 lines
192 B
Plaintext
![]() |
[source,csharp]
|
||
|
----
|
||
|
// In geometry, Point is a logical structure to group data
|
||
|
readonly record struct Point(int X, int Y, int Z);
|
||
|
|
||
|
void SetCoordinates(Point p1, Point p2)
|
||
|
{
|
||
|
// ...
|
||
|
}
|
||
|
----
|