I have got a confusing function this.\u002Ector() within the constructor of my company's old project. What does it mean?
public Common(ref string a_strUserContext)
{
bool a_blnQuietMode = false;
bool a_blnUseSessionToStoreGUID = false;
// ISSUE: explicit constructor call
this.\u002Ector(ref a_strUserContext, ref a_blnQuietMode, ref
a_blnUseSessionToStoreGUID);
}
It is a call to a constructor using IL-like syntax. u\002E is Unicode for . and combined with this and ctor, you have a call to a constructor in the same class.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With