up vote 8 down vote favorite
1
share [g+] share [fb]

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!

link|improve this question

feedback

8 Answers

up vote 26 down vote accepted

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|improve this answer
2  
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
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

"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|improve this answer
feedback
public class Test {
    int id;
    public Test(int id) {
       this.id = id;
    }

    public Test(Test test) {
       this = test;
    }
}
link|improve this answer
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
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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