An extension method is a language feature of Visual Basic.NET and c#. Extension methods enable you to "add" methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type.

learn more… | top users | synonyms

0
votes
1answer
17 views

Declare Variable in jQuery Extension Method Scope

Maybe this is because of lack of my knowledge about creating extension methods for jQuery plugin.So please don't go hard. Let's say I have two extension methods, those methods are working on the same ...
0
votes
1answer
23 views

How to avoid service locator in .net extension methods

I'm looking for a clean pattern to use dependencies in .Net extension methods without explicitly newing-up or using a service locator: public static class HttpContextExtensions { public static ...
5
votes
5answers
125 views

Can There Be Private Extension Methods?

Let's say I have a need for a simple private helper method, and intuitively in the code it would make sense as an extension method. Is there any way to encapsulate that helper to the only class that ...
8
votes
5answers
94 views

How to check if property exists in Type in an extension method?

I frequently have code like this: var stRecs = db.<someTable> .Where(a => a.DepID == depID) to select a single record, however if depID == 0 I would like to get back all ...
2
votes
1answer
35 views

Switch alternative/Extensible Programming good practices? [duplicate]

First, a bit of background of my question; I am writing a modular Server/Client type program in C#. I have a threaded processing system to handle my packets from a client queue, an example of what I ...
1
vote
1answer
56 views

Extension methods not compiling

Consider the following simple Extension method: public static class MyExtensions { public static int DemoLength(this string str, string toAdd) { return (str + toAdd).Length; } } ...
1
vote
3answers
27 views

Creating and using DropDown custom extension in asp.net mvc 3

I thought this would be a standard task but I get a lot of difficulties so I seek for assistance. I have a drop down that I use intensively in my views and now I have a lot of @Html.DropDown() with ...
1
vote
1answer
18 views

Custom xsl function with parameter array

I want to create a function for XSL to resolve a text like "Inserted by {0} at {1}" in "Inserted by Admin at 2013-05-13T10:02:17". I use XSL 1.0 and define my own functions in .NET. I try this like ...
2
votes
1answer
89 views

Extensions method replaces the standard method in C#

There are ways to use extension methods with signatures of standard methods as extension (without explicit appeal to static class)? For example: public class Foo { public override string ...
0
votes
1answer
22 views

Unable to retrieve Dictionary value when used in LINQ

I am trying to update a 'Name' DataColumn based on a 'ID' DataColumn in a DataTable. The 'ID'-'Name' pairs are stored in a Dictionary, which is created using a DataTable extension method as follows: ...
1
vote
1answer
61 views

Is it possible to limit extension methods in a class to be of specific type?

This requirement is driven by grief that peer developers mix extension method on different types into one xxxExt class. It still works because compiler takes care of the resolution by looking at he ...
3
votes
3answers
81 views

Overwriting an extension method C#

I am using RestSharp to create http requests to a webservice. One of the parameters length is very long running >100 K characters, so I figured I'll need to use the POST method (because of limitations ...
1
vote
1answer
36 views

Compare two lists in .Net and action depending on which lists items are in

I have a web page that saves a list of changes, so in the save action I have two lists, one with the new values and one with the existing ones. I want to: Loop through both lists, unioned and ...
0
votes
3answers
73 views

Why <T> is placed after method name for some extension methods in C#

I was looking at the answer of stackoverflow to learn more about C# extension methods. I couldn't understand the part <T> after the method name. To be more exact: public static bool ...
2
votes
2answers
93 views

What's the best way to add an item to a C# array?

I have the following array: int[] numbers; Is there a good way to add a number to the array? I didn't find an extension method that concats 2 arrays, I wanted to do something like: numbers = ...
0
votes
1answer
13 views

Generic extension method with an interface contraint

I have made a generic extension method (i.e AsXml) but still want a constraint with an interface (IXmlable) on some of my classes. As soon as I have introduced my constraint, some of my methods are ...
0
votes
3answers
51 views

How Would I write a String.Format Extension Method?

I use String.Format in my C# code probably more than anything aside from the if statement. string ask = String.Format("Continue using [{0}]?", value); I just got to thinking of how often I use it. ...
2
votes
3answers
84 views

Handling null in extension method

I have a simple extension method for string class which will strip all non numeric characters from a string. So if I have a string like for example a phone number such as "(555) 215-4444" it will ...
1
vote
2answers
32 views

C# StringComparer: Optional Argument Default [duplicate]

I'm attempting to create a method which checks whether a String contains any Strings contained within an IEnumerable<String>.My method so far is this: public static Boolean ContainsAny(this ...
3
votes
1answer
86 views

IntelliSense do not work with extension method when property name is the same as class name

Based on this answer: " Giving a property the same name as its class ", I've started to use property names the same as their class names. But recently I've met a strange corner case and I don't know ...
3
votes
2answers
84 views

Should one always write null-proof extension methods in .NET?

Imagine we have defined a an extension method that takes this form: public class Foo { public void Bar(int arg) { ... } } public static class FooExtensions { public static void Baz(this Foo ...
0
votes
3answers
79 views

Is it possible to create anonymous type in LINQ extension methods in C#?

Is it possible to create anonymous type in LINQ extension methods in C#? For example LINQ query.i.e. var CAquery = from temp in CAtemp join casect in CAdb.sectors on temp.sector_code equals ...
0
votes
4answers
44 views

Creating an extension method against a generic interface or as a generic constraint?

I'm not really sure if there is any real difference here in the two signatures: public static class MyCustomExtensions { public static bool IsFoo(this IComparable<T> value, T other) ...
4
votes
1answer
75 views

Extension methods and type inference

I'm trying to make a fluent interface with lots of generics and descriptors that extend base descriptors. I've put this in a github repo because pasting all of the code here would make it unreadable. ...
0
votes
1answer
30 views

Magento: Observer method getCustomer() is NULL

Okay so I have an observer that is observing the controller_action_postdispatch_customer_account_createpost action. My issue is that in the method I try to do the following: public function ...
1
vote
3answers
55 views

Using reflection and a List<>, can one return an array of specific properties via an extension method?

I'm not certain of the terminology so forgive my lack of clarity: Given a List<someclass> collection, can one create an extension method utilizing refection that allows one to return an array of ...
3
votes
2answers
80 views

C# - action on IEnumerable<T>

I have implemented this extension method: public static IEnumerable<T> DoForEach<T>(this IEnumerable<T> data, Action<T> action) { foreach (T value in data) { ...
1
vote
2answers
77 views

Extension Methods for CRM 2011 Online Instances Causing TypeLoad Exceptions

I am writing a plugin for a client on a CRM Online trial tenant (so assume it has latest patches etc.) and have come across an error I’ve not seen before. Generally speaking I always use an extension ...
0
votes
0answers
16 views

Scope of extension methods

I have ran into a strange problem regarding C# extension methods I have two projects in my Solution I have a database layer I call Project.Domain that contains my EF Context etc and a WebUI layer ...
-3
votes
0answers
40 views

Can't upload file extension .exe [closed]

I have test my project to need upload document. I testing it with all extension file as (.pdf, .doc,.....) it's run well to my condition. but when I try test with file with extension .exe it's not ...
0
votes
1answer
47 views

C# Extension Method to Calculate Position Between a Range

I am trying to write an extension method off a 'decimal' that calculates the value of a given number in relation to a given lower and upper range. I know that sounds a bit strange so here is a ...
1
vote
1answer
37 views

Extension method on lambda expression

I have a helper method which gets the name of a property defined by a lambda which works as below: ExpressionUtil.GetName((Thing t) => t.Property); // returns "Property" I would like to turn ...
0
votes
2answers
50 views

I need efficient extension method to get DataRow as List<double>

I need extensiom method for DataRow, that return list of doubles. I assume, that my DataRow contains only double datatype. I tried something like this: public static List<double> ...
1
vote
0answers
58 views

How do I set up Java “extension methods”?

I see that Java 8 should support code like this: List<String> names = Arrays.asList("Alice", "Bob", "Charlie", "Dave"); List<String> filteredNames = names .filter(e -> e.length() ...
-1
votes
1answer
17 views

Why foreach returns one row inside extension method?

Why foreach returns one row inside extension method?These codes run properly inside normal method.What could be reason for return one column? public static MvcHtmlString DropDownWithOpt(this ...
0
votes
2answers
20 views

PHP image extention

I have successfully created an upload image form that will allow the user to upload their images and store them in a certain folder. But the problem is that I don't know how to use those images with ...
1
vote
2answers
48 views

Extending XUnit Assert class with new asserts

I'm trying to extend the xUnit assert method by adding some selenium functionality namespace MyProject.Web.Specs.PageLibrary.Extensions { public static class AssertExtensions { public ...
1
vote
5answers
58 views

How to get the extention of an image using PHP? [duplicate]

Is there any way to get the extension of an image without writing its extension? For example in the code below, i have to write image.GIF to know that it is GIF file. ...
1
vote
1answer
24 views

DataRow constructor inaccessible when writing DataSet extension?

I am trying to write a couple of extensions to convert UniDataSets and UniRecords to DataSet and DataRow but I get the following error when I try to compile. ...
1
vote
1answer
25 views

Calling a generic extension method with reflection

I am trying to invoke a generic extension method with a dynamic type but I keep getting an error. GenericArguments[0], 'DifferenceConsole.Name', on 'DifferenceConsole.Difference'1[T] ...
2
votes
1answer
55 views

Compiler error on generic extension method

I am trying to write a generic extension method that the compiler can't resolve at runtime, although visual studio's intellisense does find it. The compiler error is ...
4
votes
1answer
95 views

How to “override” extension methods in .NET?

So I have an object hierarchy to produce ui controls in asp.net mvc and try to achive a fluent api. I make some dummy class to focus on the current problem. So here is the "wrong" codebase: public ...
1
vote
0answers
57 views

Writing extension methods utilizing objects from Factory in C#

I'm facing a design question on how to properly integrate an object that originates from a factory into extension methods. Say I have object Foo, I get Foo via a factory method like ...
4
votes
1answer
154 views

Grouping Lambda Expressions by Operators and Using Them With DapperExtensions' PredicateGroups

Pursuant to my previous question: Pulling Apart Expression<Func<T, object>> - I am trying to make it a bit more advanced. Currently, I can do this: var matchingPeople = ...
0
votes
2answers
42 views

Extensions Method trying to call protected methods / wrong exhibition of dynamic parameters

I have a class named NIFERepository. It contains a SaveObject method, which returns nothing and performs an operation on a database. public class NIFERepository<E> { protected void ...
1
vote
0answers
51 views

VB.NET: Overload extension methods of T

I want to create a XML document by the properties of an instance. For that I write two extensions. <Extension()> Public Function ToXml(Of T)(ByVal source As T) As XmlDocument Dim ...
2
votes
2answers
73 views

Lambda Expression compiling with parameter

I want to extend MVC with helpers. Let's assume I want to build an extension method that takes a property from the model and renders a paragraph. I've written this code, but it won't compile. I ...
0
votes
2answers
113 views

Why use extension methods, if you could do a normal method?

Could someone, please, explain why an answer in this question advocates usage of extension methods while defining base interfaces. - Why not including the the SteerLeft() and Stop() methods in their ...
1
vote
2answers
67 views

Extension methods specified as an optional Func<>

This may be a rather convoluted question, but just checking to see if there is an answer. Consider there are two extension methods that roughly look like this (and that are in another assembly that I ...
2
votes
2answers
88 views

How do I assign a delegate extension method in c#?

I want to get all the dates between two endpoints using a provided frequency. So I'm basing my approach off this simple bit of code: for (DateTime date = startDate; date <= endDate; date = ...

1 2 3 4 5 31