C# 11 ) CONSTRUCTER

                                    *  CONSTRUCTER  *

  • int  a ;          object 
  • int  a=10;     initilization
  • Constructer is a object initilization process. ex.  my m1=10 ;
Rules 
  •    Class name and Method name are similar.
             class my( )
                       {
                           Public my( )
                          {
                           }
                        }
  •    Constructer Method not use (void).
  •    Constructer always Public.
  •    Constructure Automticaly access with object creation
               pubic my( )
                        {
                        }
                          main
                               { 
                                    my m1 =new  my( );
                               }
  •    m1.show( );,m1.display( ) not use in constructer.
Default constructer
basic constructer

Parameter Constructer
parameter constructer


ass create constructer user input concept

ass constructure user input


Comments

Popular posts from this blog

DATA CONTROL ( Gridview , Repeater , Formview , DataList , Detailsview , Listview )

Z 5 ) MVC (Model view Controller)

Z 8 ) MVC HTMLHELPER METHOD AND ACTIONLINK (how to use css ,atrributes,style in css)