is there any tool which can optimize msil? for example:
if (a is MyType)
{
MyType mt = (MyType)a
}
could turn into:
MyType mt = mt as MyType ;
if (mt!=null)
{
}
Maybe there are much more such situations.
I know that the jitter *could* do such Optimisations, but does it?
--
cody
Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
if (a is MyType)
{
MyType mt = (MyType)a
}
could turn into:
MyType mt = mt as MyType ;
if (mt!=null)
{
}
Maybe there are much more such situations.
I know that the jitter *could* do such Optimisations, but does it?
--
cody
Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
Comment