Author: admin

  • Blog
  • Author: admin

C#.NET 2.0 class example for data acess layer using microsoft enterpise library

here is the data layer class example….. ///here is the enum public enum OprationType{Add = 1,Update = 2,Delete = 3 } //here is the Interfae public interface IDataStatndard{void Operation(OperationType enumOperationType); } //here is the user data class public class UserData : IDataStatndard{#region PrivateMemeberprivate DashBoardCollection.UserCollection _objUserCol;private Database _db;private string _commandName;private DbCommand _dbCommand;#endregion#region Constructorspublic UserData(){}public UserData(DashBoardCollection.UserCollection obj){_objUserCol

Important Milestone achieved- 650th blog post

I am not super crazy about achieving mile stones but I just notice that I have completed 649 posts on blog. So I thought it will be good idea to write about few mile stones. On April 2014, my blog completed 8 years. The first post I have ever written was at April 26,2006. Today

C# 6.0–Static class using statement

This blog post is part of C# 6.0 Features Series. C# 6.0 version introduced lot of small features and one of that features is  using feature. Now with C# 6.0 you can use using statement which was not possible in earlier versions of  C#. Following is a example of using statement in C#. using static System.Console;

What is Xaml? XAML-Overview

XAML means Extensible Markup Language is a language to write user interfaces in Windows Presentation Foundation applications. XAML simplifies the creating user interfaces with windows presentation foundation and .net framework 3.0. We can create visible user interface controls and component via XAML. I have found a great article that articles describes whole aspects of XAML