Tagged Questions
16
votes
4answers
797 views
Can a C# method chain be “too long”?
Not in terms of readability, naturally, since you can always arrange the separate methods into separate lines. Rather, is it dangerous, for any reason, to chain an excessively large number of methods ...
6
votes
5answers
275 views
Chaining Extension methods in C#
Is it possible to create an extension method that returns the instance that is invoking the extension method?
I would like to have an extension method for anything that inherits from ...
5
votes
5answers
326 views
f# Method Chaining vs |> Pipe Operator
So I have the following code:
// Learn more about F# at http://fsharp.net
open System
open System.Linq
open Microsoft.FSharp.Collections
let a = [1; 2; 3; 4; 54; 9]
let c = a |> List.map(fun(x) ...
5
votes
4answers
114 views
Is there a benefit to storing an object in a variable before calling a method on it?
Example 1:
SomeObject someObject = new SomeObject();
if (someObject.Method())
{
//do stuff
}
//someObject is never used again
vs
Example 2:
if (new SomeObject().Method())
{
//do stuff
}
...
5
votes
4answers
201 views
Method chaining and exceptions in C#
If I have a method chain like the following:
var abc = new ABC();
abc.method1()
.method2()
.methodThrowsException()
.method3()
;
assuming ...
4
votes
2answers
136 views
Understanding how the C# compiler deals with chaining linq methods
I'm trying to wrap my head around what the C# compiler does when I'm chaining linq methods, particularly when chaining the same method multiple times.
Simple example: Let's say I'm trying to filter a ...
2
votes
2answers
198 views
Chaining togther a complex interaction of delegate sequences
This feels quite complicated to ask, and whilst the solution seems simple, the shear mind bogglingness of delegates inside delegates returned from yet more delegates has caused my brain to implode in ...
2
votes
6answers
778 views
Is there a nice simple & elegant way to make ICollection more fluent in C#?
Example: I would like to have the Add method of ICollection of a custom collection class to implement method chaining and fluent languages so I can do this:
...
1
vote
4answers
194 views
Is chaining c# to look like jQuery a good idea?
I'm thinking of using extension methods to chain a c# statement to look like jQuery in teh following:
foo foo2 =
new foo().Title(foo1.Title)
.Name(foo1.Name)
.DoSomeStuff()
...
1
vote
2answers
555 views
Fluent API and Method-Chaining Style Usage
When programming against a fluent API or just using method-chaining, I've seen the style mostly like this:
var obj = objectFactory.CreateObject()
.SetObjectParameter(paramName, value)
...
1
vote
3answers
870 views
Functional style C# API design (returning function parameter augmented with calculation result)
There is a question regarding usage of functional programming techiques in C# code. Example
Let we have interface
interface IGraph { /*contains vertices and edges*/}
Suppose we need to layout ...
0
votes
3answers
188 views
Is it worth to use method chaining in C#?
Having Collection initializers in C# and being allowed to define properties of a class without having to call the constructor, is there any point in using Method Chaining in C#?
I can't see any. Maybe ...