-
WenDa
Quick links to popular questions:
Validating time-only input in asp.net MVC unobtrusive validation[1]
Controlling the 'alpha' level in a ggplot2 legend[2]
Is 'this' guarant...
-
Garbage collection fails to reclaim BitmapImage?
I have an application(WPF) which creates BitmapImages in huge numbers(like 25000). Seems like framework uses some internal logic so after creation there are approx 300 mb of memory consumed(150 virtua
-
Convert a Dictionary to an Interface
I am trying to convert a Dictionary in to an impmentation of an Interface. I can get a Dictionary to an Object okay. Doing something like this: public static class ObjectExtensions { public static T T
-
Spring Batch same stepnames in multiple jobs?
I'm pretty confused by naming conventions of Spring Batch using spring-batch 2.1.8.RELEASE. the main problem: 2 different Jobs, but with the same step inside (which will get different properties), w
-
Activities Stack Issue
WenDa
Activities Stack Issue
I have two sets of Activities suppose 3 Activities each set, (A1,B1,C1 || A2,B2,C2) I start my App from A1 then -> B1 -> C1 here I want to jump from C1 to -> A2 and at A2 ...
-
LINQ Convert Dictionary to Lookup
WenDa
I have a variable of type
Dictionary<MyType, List<MyOtherType>>
Lookup<MyType, MyOtehrType>.
I wanted to use Lambda functions to first, flatten the dictionary and then convert this to Lookup us...