M
Martijn Mulder
I just want to be sure about this. When I have code like this:
//data member
System.Drawing.Drawing2D.GraphicsPath graphicspath=new
System.Drawing.Drawing2D.GraphicsPath();
//method
public System.Drawing.Drawing2D.GraphicsPath GetGraphicsPath()
{
return graphicspath;
}
there is a reference, a pointer returned to 'graphicspath' and NOT a copy of
the object?
//data member
System.Drawing.Drawing2D.GraphicsPath graphicspath=new
System.Drawing.Drawing2D.GraphicsPath();
//method
public System.Drawing.Drawing2D.GraphicsPath GetGraphicsPath()
{
return graphicspath;
}
there is a reference, a pointer returned to 'graphicspath' and NOT a copy of
the object?