-
Top 5 common programming mistakes .NET developers must avoid http://amazedsaint.blogspot.com/2010/02/top-5-common-programming-mistakes-net.html
-
Praseed, another interesting option is to build a LINQ expression tree out of this, so that we can do run time IL generation. I'm thinking about, something like run time Rule engine I modified your code a bit to generate LINQ expression trees from the AST - See http://k-mug.org/forums/p/1383/3992...
-
Praseed had a good post on Generating an AST by parsing a string expression. http://k-mug.org/forums/p/1377/3981.aspx I thought it is better if we can generate LINQ Expression Trees out of the parsed AST - So that we can evolve this towards something like a Rule Engine for .NET. So, I did some quick...
-
Hi all , I have created a Project in the CodePlex to host the source code and the associated documentation of the Compiler which i am planning to demonstrate for the forthcoming Community Tech days @ Kochi. The compiler is written in Stages and so far, i have uploaded Stage 1 and Stage 2 @ http://slangfordotnet...
-
What is the use of Thread.Join() ? Is it a mandatory requirement to call Thread.Join()? If Yes, where I need to call this?
-
Guys, checkout Silverdraw. Silverdraw is realtime white board that can sync information between various participants, using Silverlight + WCF Polling Duplex. Presently this is a just a POC implementation. Users can draw together in the white board, and may chat each other. How to start 1 - Read this...
-
Thanks, Arun
-
Is there any problem in this class design? public class Users : List<users.user> { public class User { public int UserId { get; set; } public string UserName { get; set; } public string Password { get; set; } public string Email { get; set; } } }
-
Here is my problem, When I am adding ListViewItems to a ListView in a loop, items getting added and the size of the scrollbar decreaing but it is not getting displayed on the Listview. Items getting displayed only after completing the loop. I am using this with Background Worker. Is there anyway that...
-
Hi All I want to check a remote file exists using ASP.Net, its in a different web application. I was using a code like this. using (WebClient client = new WebClient()) { try { Stream stream = client.OpenRead("http://localhost/dynamicweb2/quote12.png"); if (stream != null) { //exists } } catch...