﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>DotNetLogix Latest Articles</title><link>http://www.dotnetlogix.com/</link><description>Latest Articles From DotNetLogix</description><copyright>Copyright  &amp;amp;copy; DotNetLogix, 2010-2011</copyright><language>en-us</language><webMaster>info@dotnetlogix.com</webMaster><lastBuildDate>5/18/2013 10:13:31 PM</lastBuildDate><ttl>30</ttl><item><title>Parallel task in C# 4.0</title><link>http://www.dotnetlogix.com/Article/Csharp/251/Parallel-task-in-C-40.html</link><description>In today’s computing world  is all about Parallel processing. You have multicore CPU where you have different core doing different work parallel or its doing same task parallel. For example I am having 4-core CPU as follows. So the code that I write should take care of this.</description><Author>Jalpesh Vadgama </Author><pubDate>Fri, 04 Jan 2013 04:52:17 GMT</pubDate></item><item><title>Lazy in C# 4.0</title><link>http://www.dotnetlogix.com/Article/Csharp/250/Lazy-in-C-40.html</link><description>Before C# 4.0 there was no on demand initialization by default. So at the time of declaration we need to create a value or object will be null or we have to create on demand initialization via coding.. But with C# 4.0 we now have lazy class. As per MSDN it support lazy initialization so it means if we use lazy class then it will initialize the object at the time of demand.</description><Author>Jalpesh Vadgama </Author><pubDate>Fri, 04 Jan 2013 03:07:01 GMT</pubDate></item><item><title>Convert DateTime string to DateTime variable</title><link>http://www.dotnetlogix.com/Article/Csharp/249/Convert-DateTime-string-to-DateTime-variable.html</link><description>In this post I am going to discuss about Conversion of String data in to DateTime.</description><Author>Pranay Rana </Author><pubDate>Sat, 15 Dec 2012 08:41:42 GMT</pubDate></item><item><title>Return Anonymous type</title><link>http://www.dotnetlogix.com/Article/Csharp/246/Return-Anonymous-type.html</link><description>In this post I am going to discuss about returning the anonymous type and how to handle in code. Following is list of fact about anonymous type.</description><Author>Pranay Rana </Author><pubDate>Thu, 11 Oct 2012 08:51:05 GMT</pubDate></item><item><title>Assign ToolTip to dynamically created colum of silverlight Gridview</title><link>http://www.dotnetlogix.com/Article/silverlight/245/Assign-ToolTip-to-dynamically-created-colum-of-silverlight-Gridview.html</link><description>Assign ToolTip to dynamically created colum of silverlight Gridview and How to create style for element runtime</description><Author>Pranay Rana </Author><pubDate>Thu, 13 Sep 2012 09:32:12 GMT</pubDate></item><item><title>Responsive WCF service With ICallbackEventHandler Interface</title><link>http://www.dotnetlogix.com/Article/WCF/242/Responsive-WCF-service-With-ICallbackEventHandler-Interface.html</link><description>In this post I am going to discuss about the development of the WCF(duplex) callback service which replay back to consumer i.e client of service and about ICallbackEventHandler Interface implementation which provide response to the user on screen.</description><Author>Pranay Rana </Author><pubDate>Wed, 05 Sep 2012 04:55:28 GMT</pubDate></item><item><title>Fill Combo Box from the XML</title><link>http://www.dotnetlogix.com/Article/XML/244/Fill-Combo-Box-from-the-XML.html</link><description>Fill Combo Box by fetching the data from XML.</description><Author>Gaurav </Author><pubDate>Sun, 02 Sep 2012 23:17:21 GMT</pubDate></item><item><title>Delegate and Action and Func and lamda</title><link>http://www.dotnetlogix.com/Article/Csharp/241/Delegate-and-Action-and-Func-and-lamda.html</link><description>This post is about the new delegate types included in .net framework which are Action and Function. How to use this type and what is difference between this two type. Also to resolve confusion between Action, Function, Delegate and Lamda.</description><Author>Pranay Rana </Author><pubDate>Wed, 29 Aug 2012 03:50:49 GMT</pubDate></item><item><title>Call Sql Server inbuilt functions using Linq</title><link>http://www.dotnetlogix.com/Article/sqlserver/240/Call-Sql-Server-inbuilt-functions-using-Linq.html</link><description>The post is about the the new class introduce in .net framwork for support of built in SQL-Server function. The SqlFunctions class allows to call SQL-Server function from linq queries while using EntityFramwork.</description><Author>Pranay Rana </Author><pubDate>Tue, 21 Aug 2012 03:41:10 GMT</pubDate></item><item><title>Multiple file upload with asp.net mvc and HTML5</title><link>http://www.dotnetlogix.com/Article/aspnet/237/Multiple-file-upload-with-aspnet-mvc-and-HTML5.html</link><description>Multiple file upload with asp.net mvc and HTML5</description><Author>Jalpesh Vadgama </Author><pubDate>Wed, 15 Aug 2012 10:10:52 GMT</pubDate></item><item><title>Enhance String type to get Converted In Given Type</title><link>http://www.dotnetlogix.com/Article/Csharp/235/Enhance-String-type-to-get-Converted-In-Given-Type.html</link><description>Converting string into a given type with C# Convert.ChangeType method.</description><Author>Pranay Rana </Author><pubDate>Mon, 06 Aug 2012 07:21:38 GMT</pubDate></item><item><title>Extending Enum to return attached string</title><link>http://www.dotnetlogix.com/Article/Csharp/234/Extending-Enum-to-return-attached-string.html</link><description>No of time there is requirement of getting string of Enum value to display purpose or to perform other task. So to deal with this requirement I wrote one extension function that get the string attached with the enum value.</description><Author>Pranay Rana </Author><pubDate>Mon, 30 Jul 2012 12:57:19 GMT</pubDate></item><item><title>How to define Classes in JavaScript</title><link>http://www.dotnetlogix.com/Article/aspnet/233/How-to-define-Classes-in-JavaScript.html</link><description>In this article we will see different ways of defining and instantiating an object.</description><Author>Sumit Gupta </Author><pubDate>Thu, 19 Jul 2012 07:26:39 GMT</pubDate></item><item><title>Model binding with ASP.NET 4.5 and Visual Studio 2012</title><link>http://www.dotnetlogix.com/Article/aspnet/232/Model-binding-with-ASPNET-45-and-Visual-Studio-2012.html</link><description>In earlier version of the asp.net we have to bind controls with data source control like SQL Data source, Entity Data Source, Linq Data Source if we want to bind our server controls declaratively. Some developers prefer to write whole data access logic and then bind the data source with databind method. Model binding is something similar to asp.net mvc binding.</description><Author>Jalpesh Vadgama </Author><pubDate>Tue, 17 Jul 2012 03:52:00 GMT</pubDate></item><item><title>Calling Server Side function from Client Side Script</title><link>http://www.dotnetlogix.com/Article/aspnet/231/Calling-Server-Side-function-from-Client-Side-Script.html</link><description>The post is about how you can call your code behind file function i.e server side written function from your client side code i.e using jQuery.</description><Author>Pranay Rana </Author><pubDate>Thu, 12 Jul 2012 11:41:10 GMT</pubDate></item><item><title>Multiple file upload with asp.net 4.5 and Visual Studio 2012</title><link>http://www.dotnetlogix.com/Article/aspnet/230/Multiple-file-upload-with-aspnet-45-and-Visual-Studio-2012.html</link><description>In earlier version of ASP.NET there is no way to upload multiple files at same time. We need to use third party control or we need to create custom control for that. But with asp.net 4.5 now its possible to upload multiple file with file upload control.</description><Author>Jalpesh Vadgama </Author><pubDate>Thu, 12 Jul 2012 10:33:07 GMT</pubDate></item><item><title>Dividing web.config into multiple files in asp.net</title><link>http://www.dotnetlogix.com/Article/aspnet/229/Dividing-webconfig-into-multiple-files-in-aspnet.html</link><description>When you are having different people working on one project remotely you will get some problem with web.config, as everybody was having different version of web.config. So at that time once you check in your web.config with your latest changes the other people have to get latest that web.config and made some specific changes as per their local environment. Most of people who have worked things from remotely has faced that problem. I think most common example would be connection string and app settings changes.</description><Author>Jalpesh Vadgama </Author><pubDate>Sun, 08 Jul 2012 09:40:58 GMT</pubDate></item><item><title>Format Number To Display</title><link>http://www.dotnetlogix.com/Article/Csharp/228/Format-Number-To-Display.html</link><description>Number of time the end user / client require to display numeric data in different format. In this post I am going to discuss about the various type of the custom format that provided by C#.net to achieve requirement.
Here I am going to discuss each format one by one</description><Author>Pranay Rana </Author><pubDate>Sat, 07 Jul 2012 00:55:23 GMT</pubDate></item><item><title>C# State machine - Yield</title><link>http://www.dotnetlogix.com/Article/Csharp/227/C-State-machine---Yield.html</link><description>Yield keyword introduced in C#2.0. Yield keyword allow to create state machine and allow to iterate through the collection of objects one by one</description><Author>Pranay Rana </Author><pubDate>Wed, 04 Jul 2012 00:30:40 GMT</pubDate></item><item><title>ASP.NET Web API Basics</title><link>http://www.dotnetlogix.com/Article/aspnet/226/ASPNET-Web-API-Basics.html</link><description>ASP.NET Web API is a framework for building web API on the top of .NET framework. It’s a framework for building and consuming web services that can be use at broad range of clients like browsers,tablets phones etc. You can expose JSON or XML whatever you want to use.</description><Author>Jalpesh Vadgama </Author><pubDate>Thu, 21 Jun 2012 00:13:25 GMT</pubDate></item><item><title>Tuple in C# 4.0</title><link>http://www.dotnetlogix.com/Article/Csharp/223/Tuple-in-C-40.html</link><description>C# 4.0 language includes a new feature called Tuple. Tuple provides us a way of grouping elements of different data type. That enables us to use it a lots places at practical world like we can store a coordinates of graphs etc.</description><Author>Jalpesh Vadgama </Author><pubDate>Thu, 17 May 2012 11:27:23 GMT</pubDate></item><item><title>Difference between SkipWhile and Where in linq</title><link>http://www.dotnetlogix.com/Article/Csharp/222/Difference-between-SkipWhile-and-Where-in-linq.html</link><description>Before some time I have written a blog post about the SkipWhile operator and a reader of my blog asked me that we can do the same thing with Where also but there is a difference between this two. So In this post I am going to explain you difference between those two.</description><Author>Jalpesh Vadgama </Author><pubDate>Thu, 17 May 2012 11:14:31 GMT</pubDate></item><item><title>Extension Methods in C#</title><link>http://www.dotnetlogix.com/Article/Csharp/221/Extension-Methods-in-Csharp.html</link><description>Method allow programmer to "add" methods to existing types without creating a new derived type, recompiling, or by modifying the original type. Methods are static methods they are called as if they were instance methods on the extended type.</description><Author>Pranay Rana </Author><pubDate>Wed, 16 May 2012 11:50:19 GMT</pubDate></item><item><title>Get the Way of Reflection</title><link>http://www.dotnetlogix.com/Article/Csharp/220/Get-the-Way-of-Reflection.html</link><description>What is Reflection? How we use Reflection? What are the advantages of using Reflection? Get the way of saving memory by using Reflection.</description><Author>Rahul Saxena </Author><pubDate>Wed, 09 May 2012 07:58:49 GMT</pubDate></item><item><title>How to upload file in ASP.NET MVC3</title><link>http://www.dotnetlogix.com/Article/aspnet/219/How-to-upload-file-in-ASPNET-MVC3.html</link><description>If you are a web developer you often need to upload file on the web server or database. In this post I am going explain how we can upload file in ASP.NET MVC 3 with razor syntax.</description><Author>Jalpesh Vadgama </Author><pubDate>Sun, 06 May 2012 21:46:47 GMT</pubDate></item><item><title>Generic Code of Validating Fields with Jquery</title><link>http://www.dotnetlogix.com/Article/aspnet/191/Generic-Code-of-Validating-Fields-with-Jquery.html</link><description>Generic Code of Validating Fields with Jquery</description><Author>Pranay Rana </Author><pubDate>Mon, 23 Apr 2012 12:29:43 GMT</pubDate></item><item><title>New solution explorer feature in visual studio11 developer preview</title><link>http://www.dotnetlogix.com/Article/dotnet/192/New-solution-explorer-feature-in-visual-studio11-developer-preview.html</link><description>New solution explorer feature in visual studio11 developer preview</description><Author>Jalpesh Vadgama </Author><pubDate>Wed, 18 Apr 2012 12:29:51 GMT</pubDate></item><item><title>Using TryParse Methods in C#</title><link>http://www.dotnetlogix.com/Article/Csharp/217/Using-TryParse-Methods-in-CSharp.html</link><description>TryParse methods which is provided by the .net framewok is one of the important method when you are converting string data into perticular primary datatype and wants to verify that it is convertable in given type or not.</description><Author>Pranay Rana </Author><pubDate>Thu, 12 Apr 2012 11:50:06 GMT</pubDate></item><item><title>C# generics with primary datatype</title><link>http://www.dotnetlogix.com/Article/Csharp/218/Csharp-generics-with-primary-datatype.html</link><description>Generic is feature which is useful when you have set of types which is going to perform some set of the functions which are same but the output differ from one type to another type.</description><Author>Pranay Rana </Author><pubDate>Wed, 11 Apr 2012 12:31:06 GMT</pubDate></item><item><title>Increase Linq query performance by Compling it</title><link>http://www.dotnetlogix.com/Article/LINQ/196/Increase-Linq-query-performance-by-Compling-it.html</link><description>In this article I will show how you can increase Linq query performance by Compling it</description><Author>Pranay Rana </Author><pubDate>Thu, 29 Mar 2012 12:30:36 GMT</pubDate></item></channel></rss>