C Sharp (C#) - Classes and Objects
How can you use the
this keyword to implement a fluent interface in C#? Consider this method:public class Builder {
private string result = "";
public Builder Add(string text) {
result += text;
// What to return here?
}
}