Apworks icon indicating copy to clipboard operation
Apworks copied to clipboard

Apworks is a flexible, scalable, configurable and efficient .NET based application development framework that helps software developers to easily build enterprise applications by applying either Class...

Results 2 Apworks issues
Sort by recently updated
recently updated
newest added

``` C# [TestMethod] public void ApworksTest() { Dictionary eventHandlers = new Dictionary { {typeof (int), null} }; var handlers = eventHandlers[typeof (int)]; if (handlers != null) { } else {...

Apworks\Bus\MessageDispatcher.cs Line 174 ``` Type messageType = typeof(T); ``` Here the T is always "object", and the if condition below will never be true. This issue is caused by :...