Return

From Pointui

Leaves the current method, and optionally returns a result.

void Method1()
{
	if (condition)
	{
		//exit the method at this point without returning a result
		return;
	}
}
 
String Method2(String filename)
{
	return filename + “.jpg;
}