The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
43 views

C# Delegate as object

Disclaimer: the unit-test related info for this question is not really relevant - you can skip to "The Problem" if you're not familiar with this, but it helps set the context. I have a class that I ...
1
vote
1answer
40 views

Trying to add items to a ListBox, calling it a Method Group? C#

I'm trying to move items to a listbox, but it's calling my listbox a method group. The program has multiple classes. Here's what I have at the moment... private void Button1_Click(object sender, ...
2
votes
3answers
65 views

How to write Unit test for a group of methods in which each method depends on others?

I'm new in writing Unit test & I got stuck while writing test cases for below scenario: Class A { public B createB(string name); public B getB(string name); public void removeB(B ...
2
votes
3answers
60 views

When is it valid to say a method group conversion has taken place?

So i'm not really convinced when its safe to say that a method group conversion occured. We have this multicast delegate from a previous post: public partial class MainPage : PhoneApplicationPage { ...
0
votes
0answers
87 views

Cannot assign to 'ResizeEnd' because it is a 'method group'

I'm using Visual Studio 2010. In the designer for my form I added an event handler to the ResizeEnd event. The code generated looks like this: this.ResizeEnd += new ...
0
votes
1answer
79 views

Using Method Group gives me The call is ambiguous between the following methods or properties:

I want to call a simple method group in Linq but I receive this error. The call is ambiguous between the following methods or properties: ...
3
votes
1answer
105 views

Method group in VB.NET?

James Michael Hare recently wrote a blog post about Char static methods. He talks about using a method group to write less-wordy LINQ: if (myString.Any(c => char.IsLower(c))) { xyzzy(); } if ...
1
vote
2answers
244 views

C# delegate contravariance with lambda expression

The second test method below does not compile (cannot convert lambda expression to target type D1). Does that mean that (non-generic) delegate contravariance does not work with lambda expressions? ...
7
votes
4answers
185 views

why delegate must be static?

In code below I must declare method MdrResponseInterpreter static otherwise I have compilation error. class.... { private StandardBuilder _mdrResponseBuilder = new ...
0
votes
1answer
43 views

How to pass one overload of a method group?

Edit: It is my own mistake (combined with some unexpected changes outside). please ignore this post and sorry for inconvenience! Before I used to just pass this method: string DoSomething(string) ...
14
votes
2answers
722 views

Using C# method group executes code

While updating my UI code (C# in a .NET 4.0 application), I ran into a strange crash due to a call to the UI being executed in the wrong thread. However, I was invoking that call on the main thread ...
3
votes
2answers
480 views

Method Inference does not work with method group

Consider void Main() { var list = new[] {"1", "2", "3"}; list.Sum(GetValue); //error CS0121 list.Sum(s => GetValue(s)); //works ! } double GetValue(string s) { double val; ...
5
votes
2answers
625 views

What is this ReSharper snippet 'convert to method group' actually doing?

Code before the changes: List<ProductBrandModel> model = brands.Select(item => Mapper.Map<ProductBrand, ProductBrandModel>(item)).ToList(); Code after the improvement: ...
0
votes
3answers
550 views

How to check for “method group” via “sender” object?

Imagine a method like this ( in Win Forms): //First method private void buttonStart_Click(object sender, EventArgs e) { //I call another method here this.GetData(sender, null) } ...
3
votes
2answers
805 views

Overloaded method-group argument confuses overload resolution?

The following call to the overloaded Enumerable.Select method: var itemOnlyOneTuples = "test".Select<char, Tuple<char>>(Tuple.Create); fails with an ambiguity error (namespaces removed ...
3
votes
2answers
114 views

Error Assigning Delegate Using ? : Syntax

I've created a delegate and two matching methods. private delegate bool CharComparer(char a, char b); // Case-sensitive char comparer private static bool CharCompare(char a, char b) { return (a ...
2
votes
2answers
479 views

Why does adding a return type prevent me from using method group syntax?

I'm trying to use a method group in a lambda expression, like this: public class Foo { public void Hello(string s) { } } void Test() { // this works as long as Hello has a void return type ...
11
votes
7answers
609 views

Are there any benefits to using a C# method group if available?

When dealing with something like a List<string> you can write the following: list.ForEach(x => Console.WriteLine(x)); or you can use a method group to do the same operation: ...
22
votes
2answers
492 views

C# Language Design: method group inside `is` operator

I'm interesting in some design choices of C# language. There is a rule in C# spec that allows to use method groups as the expressions of is operator: class Foo { static void Main() { if (Main is ...
11
votes
2answers
2k views

C# method group strangeness

I discovered something very strange that I'm hoping to better understand. var all = new List<int[]>{ new int[]{1,2,3}, new int[]{4,5,6}, new ...
0
votes
7answers
2k views

“<” operator error

Why is the ( i < UniqueWords.Count ) expression valid in the for loop, but returns "CS0019 Operator '<' cannot be applied to operands of type 'int' and 'method group'" error when placed in my ...
5
votes
1answer
3k views

Convert Method Group to Expression

I'm trying to figure out of if there is a simple syntax for converting a Method Group to an expression. It seems easy enough with lambdas, but it doesn't translate to methods: Given public delegate ...
109
votes
5answers
36k views

What is a method group in C#?

I have often encountered an error such as "cannot convert from 'method group' to 'string'" in cases like : var list = new List<string>(); // ... snip list.Add(someObject.ToString); of course ...