I can't seem to get Spices to obfuscate object names that are only declared and used inside of a method (at least not very well). For example, this:
void NoteDeleted(object sender, EventArgs e)
{
INoteContainer nc = _p as INoteContainer;
nc.Notes.Get(e.Data.ID).Text = "";
OnItemRemoved();
}
was changed to this:
private void 21(object, EventArgs args1)
{
INoteContainer container = this.0 as INoteContainer;
container.Notes.Get(args1.Data.ID).Text = "";
OnItemRemoved();
}
My question is: Is there anyway to make the INoteContainer object (named "nc" or "container" in these examples) be named more obscurely? My method name went from NoteDeleted to 21, why wasn't the INoteContainer named with a numeric name???