Super User

Super User

when you build a software make sure that you built it by object oriented way
and you organized your files in folders as following way -

Tuesday, 18 December 2012 18:58

About Microsoft .net framework 3.5 sp1

.Net framework 3.5 sp1 contains more features than
previous .net framework versions like 2.0,3.0,3.5

Tuesday, 18 December 2012 17:55

c# namespaces

namespaces is a old concept in c# programming.both
java and c# uses this concept.a namespace is act like
a 'wrapper' around one or many elements which gives
them uniqueness.

It's a good idea to use a class say gateway where all
database access codes will be written.in this gateway class
you will implement db connection as follows -

first create another class -

in coding giving proper names to methods,classes,controls,
variables,others is neccessary and good programming practice.
think that a method name-show button click.

code behind file codes -

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

Monday, 17 December 2012 13:54

Simple Gridview control example

following codes shows how to use GridView control.Its a
simple example.

in app main file -

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;


Latest discussions

  • No posts to display.