I have created a following helper (below codes are just to demonstrate what I am looking for)
@helper SayHello(string text)
{
@text
}
Now from an action i want to return this Helper's Text as Html (or string) as below
public ActionResult MyAction()
{
//something like this to return just html
return SayHello("Rusi");
}