The links are extremely light, so don't worry about it.
If you really need to avoid it (and, I think, I donβt think), think about this:
class MyClass
{
private ObjectDict m_dict;
public string Recurse(string pattern, ObjectDict dict)
{
m_dict = dict;
return HelperRecurse(pattern);
}
private string HelperRecurse(string pattern)
{
HelperRecurse(pattern);
return "Hello World";
}
}
, , -. static.