show/hide this revision's text 3 deleted 9 characters in body

When you overload the - unary operators, for an immutable type, you can write it like:

public static Point3 operator - (Point3 p)
{
    return new Point3 (-this.X, -p.X, -this.Y, p.Y, -this.Z);
p.Z);
}

But for the + unary operator, how should you implement it? Like this:

public static Point3 operator + (Point3 p)
{
    return p;
}

or like this:

public static Point3 operator + (Point3 p)
{
    return new Point3 (p);
}
show/hide this revision's text 2 added 23 characters in body

When you overload the - unary operators, for an immutable type, you can write it like:

public static Point3 operator - (Point3 p)
{
    return new Point3 (-p);
-this.X, -this.Y, -this.Z);
}

But for the + unary operator, how should you implement it? Like this:

public static Point3 operator + (Point3 p)
{
    return p;
}

or like this:

public static Point3 operator + (Point3 p)
{
    return new Point3 (p);
}
show/hide this revision's text 1

Overloading +/- unary operators

When you overload the - unary operators, for an immutable type, you can write it like:

public static Point3 operator - (Point3 p)
{
    return new Point3 (-p);
}

But for the + unary operator, how should you implement it? Like this:

public static Point3 operator + (Point3 p)
{
    return p;
}

or like this:

public static Point3 operator + (Point3 p)
{
    return new Point3 (p);
}