Declaration of Anonymous types List

Is there any way to declare a list object of anonymous type. I mean List<var> someVariable = new List<var>(); someVariable.Add( new{Name="Krishna", Phones = new[] {"555-555-5555", "666-666-6666"}} ); This is because I need to create a collection at runtime. Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may … Read more

In memory database in .net

I have a .net application where i want to use In-Memory data structure. Please advice me how it works in compare to the physical database. Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. … Read more

Quartz Scheduler: How to pass custom objects as JobParameter?

I am planning to write a ASP.NET page to trigger the job on demand. Currently, I am using SimpleTrigger class to trigger the job but none of the __Trigger class supports object type as value in JobParameters and it has come to my knowledge that WCF Tcp binding is used under the hook to pass the parameters to job scheduling engine. I would like to know how to pass custom object (serializable) as job parameters.
Thanks for your advice!