vote up 5 vote down star

Does anybody have useful example of "this" assignment inside a C# method? I have been asked for it once during job interview, and I am still interested in answer myself.

Thank you!

flag

8 Answers

vote up 21 vote down check

The other answers are incorrect when they say you cannot assign to 'this'. True, you can't for a class type, but you can for a struct type:

public struct MyValueType
{
    public int Id;
    public void Swap(ref MyValueType other)
    {
        MyValueType temp = this;
        this = other;
        other = temp;
    }
}

At any point a struct can alter itself by assigning to 'this' like so.

link|flag
1  
learn something new every day... – Brian Leahy Sep 16 '08 at 7:42
Ohhh it's because as a struct it is a value type and the assignment operator = with value types copies values. – Brian Leahy Sep 16 '08 at 7:44
Enlightening! Subjective Comment: however apart from the Swap(ref struct) scenario, I can't think of anything else that can benefit from this. this cannot be used before assigning all members of that struct. I'd rather use the s2 = s1 instead of having a method with this used as above. – Gishu Sep 16 '08 at 9:02
Also have not seen this before :) – leppie Oct 7 '08 at 8:09
vote up 2 vote down

using the this keyword ensures that only variables and methods scoped in the current type are accessed. This can be used when you have a naming conflict between a field/property and a local variable or method parameter.

Typically used in constructors:

private readonly IProvider provider;
public MyClass(IProvider provider)
{
  this.provider = provider;
}

In this example we assign the parameter provider to the private field provider.

link|flag
vote up 2 vote down

Not sure if I completely understand your question, but if someone asked you "Why might you assign a value to the 'this' keyword in C#?" then either they are idiots or it was a trick question.

You cannot assign a value to the "this" keyword in C#.

EDIT: Apparently you can assign to the "this" keyword within a struct. I guess I need to use structs more often... ;)


EDIT: If, on the other hand, someone is talking about assigning the value of "this" to another variable, that would be different.

public class Node
{
   ...  

   public void AddChild(Node childNode)
   {
      childNode.ParentNode = this; // this node will be child node's parent
   }

   ...
}
link|flag
vote up 1 vote down

You cannot overwrite "this". It points to the current object instance.

link|flag
vote up 0 vote down

only correct place for this from syntax point of view, is Extension methods in C# 3.0 when you specify first parameter of method as foo(ftype this, ...). and then can use this extension for any instance of ftype. But is's just syntax and not real this ovveride operation.

link|flag
vote up 0 vote down

if you're asked to assign something to this, there's quite a few examples. One that comes to mind is telling a control who his daddy is:

class frmMain
{
    void InitializeComponents()
    {
        btnOK = new Button();
        btnOK.Parent = this;
    }
}
link|flag
vote up 0 vote down

"this" is a reference to the current class instance. If you have a non-static method on a class, you can refer to the current class instance using this:

 public class MyClass{

      public string SomeProperty {get;set;}
      public void GetSomeProperty(){
        return this.SomeProperty;
      }

}
link|flag
vote up -1 vote down
public class Test {
    int id;
    public Test(int id) {
       this.id = id;
    }

    public Test(Test test) {
       this = test;
    }
}
link|flag
This code doesn't compile. But really if you change class to struct, like richdiet said, it's OK. – Alexander Prokofyev Sep 24 '08 at 4:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.