Tagged Questions
30
votes
3answers
545 views
Passing lambda functions as named parameters in C#
Compile this simple program:
class Program
{
static void Foo( Action bar )
{
bar();
}
static void Main( string[] args )
{
Foo( () => Console.WriteLine( "42" ) ...
5
votes
11answers
4k views
C# Named parameters to a string that replace to the parameter values
I want in a good performance way (I hope) replace a named parameter in my string to a named parameter from code, example, my string:
"Hi {name}, do you like milk?"
How could I replace the {name} by ...
4
votes
1answer
201 views
Is there any tools to help me refactor a method call from using position-based to name-based parameters
I wish to transform code like:
var p = new Person("Ian", "Smith", 40, 16)
To:
var p = new Person(surname: "Ian", givenName:"Smith", weight:40, age:16)
As a first step in making the code more ...
4
votes
2answers
130 views
Optional Specification of some C# Optional Parameters
Suppose you have a method with the following signature:
public void SomeMethod(bool foo = false, bool bar = true) { /* ... */ }
When calling this method, is there a way to specify a value for bar ...
2
votes
5answers
115 views
Pass Named Parameter Conditionally
I have a struct which takes 3 named parameters in to the constructor...
public struct MyData
{
private readonly double _value1;
private readonly double _value2;
private readonly double ...
2
votes
1answer
580 views
How to set named argument for string.Format?
I have C# error when calling:
string.Format(format:"abbccc", 1,22);
The error is "Named argument specifications must appear after all fixed arguments have been specified"
How can I fix this?
...
2
votes
2answers
280 views
Does C# 2.0-3.0 have named arguments support for methods?
Is there a way to have named arguments like in perl/python
for example
object.method(arg1 => value1, arg2 => value2, arg3 => 0);
in C# prior to C# 4.0?
1
vote
1answer
144 views
Constructor parameter naming for clarity with passing in anonymous methods
I'm interested in the readability of my code when passing anonymous methods into delegate parameters:
var touchListener = new TouchListener(
down:(v, e) =>
...
1
vote
1answer
209 views
How to init a `HashTable` object which use named parameters?
We can init a HashTable object using the below syntax.
var listTinhThanh = new System.Collections.Hashtable()
{
{ "key", someObject }
};
I want to use the code in such a manner of:
var ...
0
votes
2answers
193 views
Named Parameters in C# 4 and Intellisense
Am I right in saying there is no Intellisense for C# 4 named parameters in Visual Studio 2010.
For example if I have the following method signature:
public static List<Person> GetPerson(string ...