ValueType as property in class

I am a bit confused with a concept of value types as properties in a class. As far as I understand, when getter is called – a copy of value type is returned. Let’s have an example: public struct Point { public int X; public int Y; public void Set(int x, int y) { X… Read More ValueType as property in class