How are CLR (.NET) objects managed in SQL Server?
The entry point to any CLR code from SQL Server is a static method. Typically you\'ll only create objects that exi
Here's some info that I've found.
Troubles with shared state and anonymous delegates in SQLCLR
Not only is shared state not allowed in a non-UNSAFE assembly, but anonymous delegates (unfortunately) trigger this "shared state" restriction.