.NET HELP

C# This (How it Works for Developers)

Kannaopat Udonpant
Kannapat Udonpant
June 13, 2023
Share:

There's a particular keyword in C# that holds special importance, and that is the this keyword. This keyword refers to the current class instance where it's used. It can be used to distinguish between class-level variables and method parameters that share the same name, among other things. For instance, if you have an instance variable and a method parameter with the same name, this can be a lifesaver!

The Basics of this Keyword

In a public class, like Employee for example, you may have public instance variables such as id or name. If you want to assign values to these instance variables inside a method, you might stumble upon a common problem: What if the method parameters have the same name as the instance variables?

Here's a solution: Use the this keyword in C# documentation! In the following example of a method inside the public class Employee, the this keyword is used to distinguish between the instance variables and the method parameters that share the same names.

public void Display(int id, string name)
{
    this.id = id;
    this.name = name;
}
public void Display(int id, string name)
{
    this.id = id;
    this.name = name;
}

In this case, this.id refers to the instance variable, and id is the method parameter.

this Keyword in Constructor Overloading

By leveraging the this keyword, constructor overloading becomes a powerful technique within the same class. When a class, such as a student class, has multiple constructors with varying parameters, the this keyword allows one constructor to call another, eliminating the need for redundant code.

Consider the following example where this is used in a parametrized constructor:

public class Student
{
    private string name;
    private int id;

    public Student() : this("Default", 0)
    {
    }

    public Student(string name, int id)
    {
        this.name = name;
        this.id = id;
    }
}
public class Student
{
    private string name;
    private int id;

    public Student() : this("Default", 0)
    {
    }

    public Student(string name, int id)
    {
        this.name = name;
        this.id = id;
    }
}

In the parameter-less constructor, this("Default", 0) calls the parametrized constructor, setting Default as the name and as the ID.

Exploring this in Extension Methods

Extension methods in C# provide a way to add methods to existing types without modifying the original type. Here's where the this keyword does something magical. It's used in the parameter list of the extension method to refer to the type being extended.

Consider the following example of an extension method:

public static class StringExtensions
{
    public static bool IsNullOrEmpty(this string str)
    {
        return string.IsNullOrEmpty(str);
    }
}
public static class StringExtensions
{
    public static bool IsNullOrEmpty(this string str)
    {
        return string.IsNullOrEmpty(str);
    }
}

Here, this string str tells C# that this is an extension method for the string type. Now you can use this method on any string object, like if(myString.IsNullOrEmpty()).

this in Indexers

The this keyword can also be used in defining indexers. An indexer allows instances of a class to be indexed just like arrays. This helps you access data within objects using index-like notation. In an indexer, this is followed by an array index, which is usually int index.

Here's a basic example of an indexer:

public class Test
{
    private int [] array = new int [100];

    public int this [int index]
    {
        get { return array [index]; }
        set { array [index] = value; }
    }
}
public class Test
{
    private int [] array = new int [100];

    public int this [int index]
    {
        get { return array [index]; }
        set { array [index] = value; }
    }
}

In this class Test, the this keyword defines an indexer that can be used to get or set values in the array instance field.

this and Static Members

One thing to note about this is that it cannot be used to reference static members or methods. This is because this refers to the current instance, and static members belong to the class itself, not an instance of the class.

public class Program
{
    public static void Main(string [] args)
    {
        // Can't use `this` here, because 'Main' is a static method.
    }
}
public class Program
{
    public static void Main(string [] args)
    {
        // Can't use `this` here, because 'Main' is a static method.
    }
}

So, remember, this is for instances, not for class-level or static members!

this Keyword and Properties

Just like instance variables and method parameters, the this keyword can also be used with properties. In C#, a property is a member that provides a flexible mechanism for reading, writing, or computing the value of a private field. Properties can be used as if they are public data members, but they are actually special methods called accessors.

Let's look at a simple example using this in a property:

public class Employee
{
    private string name;

    public string Name
    {
        get { return this.name; }
        set { this.name = value; }
    }
}
public class Employee
{
    private string name;

    public string Name
    {
        get { return this.name; }
        set { this.name = value; }
    }
}

In the above class, the this keyword is used to refer to the private string name in the get and set accessors of the Name property.

Exploring this and Delegates

Another place where this shows up is in delegates. A delegate in C# is similar to a function pointer in C or C++. It's a reference-type variable that holds the reference to a method. Delegate methods, just like extension methods, can use this to access the current instance.

Here's an example of a delegate using this:

public delegate void DisplayDelegate();

public class Student
{
    public int Id { get; set; }
    public string Name { get; set; }

    public void Display()
    {
        DisplayDelegate displayDelegate = new DisplayDelegate(this.DisplayDetails);
        displayDelegate();
    }

    private void DisplayDetails()
    {
        Console.WriteLine("ID: " + Id + ", Name: " + Name);
    }
}
public delegate void DisplayDelegate();

public class Student
{
    public int Id { get; set; }
    public string Name { get; set; }

    public void Display()
    {
        DisplayDelegate displayDelegate = new DisplayDelegate(this.DisplayDetails);
        displayDelegate();
    }

    private void DisplayDetails()
    {
        Console.WriteLine("ID: " + Id + ", Name: " + Name);
    }
}

In the student class, this.DisplayDetails creates a new instance of the delegate that refers to the DisplayDetails method of the current object.

Implementing this Keyword with IronPDF

Let's delve into an example where you might use the this keyword in conjunction with IronPDF, a powerful .NET library for editing and creating PDF files using HTML.

Consider a class named PDFHandler that uses the IronPDF library to perform various operations on PDF files:

using IronPdf;

public class PDFHandler
{
    private string path;

    public PDFHandler(string path)
    {
        this.path = path;
    }

    public void GeneratePDF(string content)
    {
        var Renderer = new IronPdf.ChromePdfRenderer();
        var PDF = Renderer.RenderHtmlAsPdf(content);
        PDF.SaveAs(this.path);
    }
}
using IronPdf;

public class PDFHandler
{
    private string path;

    public PDFHandler(string path)
    {
        this.path = path;
    }

    public void GeneratePDF(string content)
    {
        var Renderer = new IronPdf.ChromePdfRenderer();
        var PDF = Renderer.RenderHtmlAsPdf(content);
        PDF.SaveAs(this.path);
    }
}

In this PDFHandler class, the this keyword is used to refer to the path field of the current instance. This field is used to save the generated PDF to the specified path.

When we create a new instance of PDFHandler and call the GeneratePDF method, the this keyword allows us to utilize the path specified during object creation:

class Program
{
    static void Main(string [] args)
    {
        PDFHandler pdfHandler = new PDFHandler("C:\\ThisKeyowrd.pdf");
        pdfHandler.GeneratePDF("Hello World!");
    }
}
class Program
{
    static void Main(string [] args)
    {
        PDFHandler pdfHandler = new PDFHandler("C:\\ThisKeyowrd.pdf");
        pdfHandler.GeneratePDF("Hello World!");
    }
}

Here, this makes the code more readable and understandable, especially when dealing with libraries like IronPDF.

C# This (How It Works For Developers) Figure 1

Conclusion

By now, you should have a good understanding of the this keyword in C#, including its wide-ranging uses, from simple instance variables to complex contexts such as constructors, extension methods, properties, delegates, anonymous methods, and even when using popular libraries like IronPDF.

Remember, IronPDF offers a free trial of IronPDF, so you can put to the test everything you've learned today. If you decide to continue with it, licenses start from just \$liteLicense. IronPDF can be a worthy addition to your C# development toolkit, simplifying the task of handling PDF files in your applications.

Kannaopat Udonpant
Software Engineer
Before becoming a Software Engineer, Kannapat completed a Environmental Resources PhD from Hokkaido University in Japan. While pursuing his degree, Kannapat also became a member of the Vehicle Robotics Laboratory, which is part of the Department of Bioproduction Engineering. In 2022, he leveraged his C# skills to join Iron Software's engineering team, where he focuses on IronPDF. Kannapat values his job because he learns directly from the developer who writes most of the code used in IronPDF. In addition to peer learning, Kannapat enjoys the social aspect of working at Iron Software. When he's not writing code or documentation, Kannapat can usually be found gaming on his PS5 or rewatching The Last of Us.
< PREVIOUS
C# New (How It Works For Developers)
NEXT >
C# List (How it Works For Developers)