So i have 2 distinct methods.
one is a normal method
void DoSomething(delegate x)
{
foreach(......)
{ x(); }
}
the other is a partial but unimplemented one
partial void DoWorkInForEach();
when i call my first method like this
DoSomething(DoWorkInForEach);
what will happen, will the delegate parameter be null, will my entire method call be deleted?