-
For a long time I’ve been under impression that rule engine that comes with Microsoft Windows Workflow Foundation is slow, very slow. We used it to execute some of our business rules, and soon found out that rule processing slows down application execution. What was strange is that the rules were really...
-
Today's tip is a quick look at both not widely used C# operators and why prefer one to another.. Casting using is-operator: if(p is Product) // CLR?: Could i cast this to product? { Product x = (Product)p; // CLR again??: Could i cast this to Product? } This work but comes with performance cost so...
-
Those are a subset of Hanselman's tool list , those are very helpful during my daily job... so i thought i share with you.. to boost your productivity as well. Query Express - A light weight Query analyzer like application .NET Reflector - Amazing utility reflect over .NET Assemblies you can use...