Jb Evain
Jb Evain
Fix for #628. We'll be losing a bit of performance on `GetType(namespace, name)` and `GetType(fullName)`, but we were not invalidating the cache properly.
Cecil can round-trip an assembly containing win32 resources, and will preserve them, but doesn't offer a way to add / modify / remove win32 resources.
We need an API to parse and emit code without creating costly Instruction instances. For the reading part, we would move the ILParse functionality from Cecil.Rocks to Cecil. For the...
Currently Cecil fails to read an assembly which has a non sorted GenericParameterTable.
Import for Cecil types defined in another module of the same assembly doesn't work.
Cecil currently does not support reading or writing custom attributes declared on a TypeRef or a MemberRef.
It's generally recommended to cache the result of expensive calls like `Camera.main` and `GetComponent` inside the `Start` message and avoid calling them in `Update`/`FixedUpdate`. #### Proposed solution We should detect...