My coding standards plugin is complaining and telling me to use a lambda for this delegate but the only suggested fix is to ignore the warning, how do I go about this?
myobb.Populate += delegate(string s1, string s2)
{
string s3 = s1 + s2;
SomeObject.DoSomething(s3);
};
s3variable you declared. The anonymous function does nothing currently.