Hi
I want to make an abstract method. But I always get the error " cannot declare a body because it is marked abstract."
When I delete the return then I get the error than I need a return.
can someone help me please
public abstract Graphics drawRectangle(Graphics drawarea)
{
return drawarea;
}