this keyword in C#

this keyword in C#
 
Simple explanation of this keyword to make user understand its way of using and implementation.
The
this keyword refers to the current instance of the class. It can be used to access members from within constructors, instance methods, and instance accessors.

Static constructors and member methods do not have a
this pointer because they are not instantiated.

When you are writing code in method or property of a class, using "this"
will allow you to make use of the intellisense.
this
keyword is used when you want to track the instance, which is invoked to perform some calculation or further processing relating to that instance.



Without this : 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace
this_example
{
    class Program
    {
        public class Demo
        {
            int age;
            string name;
 
            public Demo(int age, string name)
            {
                age = age;
                name = name; 
            }
 
            public void Show()
            {
                Console.WriteLine("Your age is :" + age.ToString());
                Console.WriteLine("Your name is : " + name);
            }
        }
 
        static void Main(string[] args)
        {
            int _age;
            string _name;
 
            Console.WriteLine("Enter your age : " );
            _age=Int32.Parse(Console.ReadLine());
 
            Console.WriteLine("Enter your name : ");
            _name=Console.ReadLine();
 
            Demo obj = new Demo(_age, _name);
 
            obj.Show();
            Console.ReadLine();
         }
    }
}

 With this :

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; 
namespace this_example
{
    class Program
    {
        public class Demo
        {
            int age;
            string name;
 
            public Demo(int age, string name)
            {
 
                // Have made change here included this keyword
                this.age = age;
                this.name = name;
             }
 
            public void Show()
            {
                Console.WriteLine("Your age is :" + age.ToString());
                Console.WriteLine("Your name is : " + name);
            }
        }
 
        static void Main(string[] args)
        {
            int _age;
            string _name;
 
            Console.WriteLine("Enter your age : " );
            _age=Int32.Parse(Console.ReadLine());
 
            Console.WriteLine("Enter your name : ");
            _name=Console.ReadLine();
 
            Demo obj = new Demo(_age, _name);
 
            obj.Show();
            Console.ReadLine();
        }
    }
}


Same Output...... 
Try it...

Comments

Popular posts from this blog

Add Serial no in crystal report without coding

Working with Oracle's BLOB and Microsoft's C#

File operations in C# (.net)