Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What does the this keyword refer to in C#?
The <code>this</code> keyword refers to the current instance of the class where it is used. It helps access members (fields, methods) of that instance.
Click to reveal answer
beginner
How can this be used to resolve naming conflicts in constructors?
When constructor parameters have the same names as class fields, <code>this</code> is used to refer to the class fields, distinguishing them from parameters.
Click to reveal answer
beginner
Can this be used in static methods? Why or why not?
No, <code>this</code> cannot be used in static methods because static methods belong to the class itself, not to any instance. <code>this</code> refers to an instance.
Click to reveal answer
intermediate
What is the purpose of using this in extension methods?
In extension methods, this before the first parameter indicates which type the method extends, allowing the method to be called as if it were part of that type.
Click to reveal answer
intermediate
Explain how this can be used to call another constructor in the same class.
Using this(...) in the constructor initializer calls another constructor in the same class, allowing code reuse and cleaner initialization.
Click to reveal answer
What does this refer to inside a non-static method?
AThe current instance of the class
BThe class itself
CA static member
DA local variable
✗ Incorrect
this always refers to the current instance of the class inside non-static methods.
Can you use this inside a static method?
AYes, always
BOnly if the method is private
CNo, because static methods have no instance
DOnly if the method is public
✗ Incorrect
Static methods belong to the class, not an instance, so this is not available.
How do you call another constructor in the same class using this?
Athis(); inside the constructor body
Bbase(); inside the constructor body
Csuper(); in the constructor initializer
Dthis(...); in the constructor initializer
✗ Incorrect
You use this(...) in the constructor initializer to call another constructor in the same class.
In extension methods, what does the this keyword before the first parameter mean?
AIt marks the method as static
BIt specifies the type being extended
CIt makes the method private
DIt creates a new instance
✗ Incorrect
In extension methods, this before the first parameter specifies the type the method extends.
Why use this to refer to fields when constructor parameters have the same name?
ATo distinguish class fields from parameters
BTo access static members
CTo call base class constructor
DTo create new objects
✗ Incorrect
this clarifies that you mean the class field, not the parameter with the same name.
Explain the role of the this keyword in C# and give two examples of its use.
Think about how <code>this</code> helps inside instance methods and constructors.
You got /5 concepts.
Why can't this be used inside static methods? What does this tell you about static methods?
Consider the difference between instance and static members.
You got /3 concepts.
Practice
(1/5)
1. What does the this keyword refer to inside a class in C#?
easy
A. A local variable inside a method
B. A static method of the class
C. The base class of the current class
D. The current instance of the class
Solution
Step 1: Understand the role of this
The this keyword always points to the current object instance inside its class.
Step 2: Differentiate from other options
It does not refer to static methods, local variables, or base classes.
Final Answer:
The current instance of the class -> Option D
Quick Check:
this = current object [OK]
Hint: Remember: this means current object instance [OK]
Common Mistakes:
Confusing this with static members
Thinking this refers to base class
Assuming this is a local variable
2. Which of the following is the correct way to use this to refer to a class field when a method parameter has the same name?
easy
A. public void SetName(string name) { this.name = name; }
B. public void SetName(string name) { name = name; }
C. public void SetName(string name) { name = this.name; }
D. public void SetName(string name) { SetName = name; }
Solution
Step 1: Identify the naming conflict
The parameter name hides the class field name.
Step 2: Use this to refer to the field
this.name = name; assigns the parameter value to the class field.
Final Answer:
public void SetName(string name) { this.name = name; } -> Option A
Quick Check:
Use this to access fields with same name [OK]
Hint: Use this.field to avoid name conflicts [OK]
Common Mistakes:
Assigning parameter to itself
Reversing assignment order
Using invalid syntax for assignment
3. What will be the output of the following code?
class Person {
public string Name;
public Person(string Name) {
this.Name = Name;
}
public void PrintName() {
Console.WriteLine(this.Name);
}
}
var p = new Person("Alice");
p.PrintName();
medium
A. Name
B. Compilation error
C. Alice
D. null
Solution
Step 1: Analyze constructor assignment
The constructor assigns the parameter Name to the field Name using this.Name = Name;.
Step 2: Check output of PrintName()
The method prints the field Name, which holds "Alice".
Final Answer:
Alice -> Option C
Quick Check:
Constructor sets field, print shows "Alice" [OK]
Hint: Constructor sets field with this, print shows value [OK]
Common Mistakes:
Confusing parameter and field values
Expecting default null output
Thinking this causes error
4. Identify the error in this code snippet:
class Car {
public string Model;
public Car(string Model) {
Model = Model;
}
}
medium
A. Missing this keyword causes field not to be set
B. Constructor syntax is invalid
C. Field Model should be static
D. Parameter name cannot be same as field name
Solution
Step 1: Understand assignment in constructor
The assignment Model = Model; assigns the parameter to itself, not the field.
Step 2: Use this to fix
Using this.Model = Model; assigns the parameter value to the field.
Final Answer:
Missing this keyword causes field not to be set -> Option A
Quick Check:
Use this to assign fields when names overlap [OK]
Hint: Assign fields with this.field = param to avoid errors [OK]
Common Mistakes:
Assuming parameter assigns field automatically
Thinking constructor syntax is wrong
Believing parameter names must differ from fields
5. Consider this class with two constructors:
class Box {
public int Width, Height;
public Box() : this(10, 20) {}
public Box(int Width, int Height) {
this.Width = Width;
this.Height = Height;
}
}
var b = new Box();
Console.WriteLine($"{b.Width}, {b.Height}");
What will be the output and why?
hard
A. 0, 0 because fields are not initialized
B. 10, 20 because the parameterless constructor calls the other constructor using this
C. Compilation error due to constructor chaining
D. Runtime error because of infinite constructor call
Solution
Step 1: Understand constructor chaining with this
The parameterless constructor calls the two-parameter constructor with values 10 and 20.
Step 2: Check field initialization
The two-parameter constructor sets Width and Height to 10 and 20 respectively.
Final Answer:
10, 20 because the parameterless constructor calls the other constructor using this -> Option B
Quick Check:
Constructor chaining with this sets fields [OK]
Hint: Use this(args) to call another constructor [OK]