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.
5
votes
1answer
98 views
Unable to call F# Extension in VB.Net
Solved: IntelliSense just doesn't show the Extension!
Lets say we got the following extension method in F#:
[<Extension>]
module Extension =
[<Extension>]
let Increment(value : ...
0
votes
1answer
40 views
why is a multi bound generic not checked at compile Time
suppose I have simple classes like this
public interface Something{
public void doSomtehing()
}
class A{
public int getAVal(){
return 0;
}
}
class AWithSomething extends A ...
5
votes
1answer
58 views
generic extension method on IQueryable<T> [duplicate]
I've written an extension method on IQueryable which returns the same type of IQueryable, just filtered a bit.
Let's say it's something like that:
public static IEnumerable<T> Foo<T>(this ...
1
vote
1answer
14 views
Custom objectset extension methods
I have tried Googling strings like "c# ef objectset extension methods" but I suppose I'm using the wrong terms here, because I can't find anything relevant.
What I would like to know is how I add a ...
0
votes
1answer
40 views
Passing Func to method where the func needs parameters from inside method
So I have some sorting logic that I need to use all over the place, so I thought I'd try and create a generic method that I could call and not have to copy and paste the code 30 times.
This is what I ...
1
vote
1answer
40 views
Custom Extension Method in LINQ to Objects to return anonymous objects with comparer
I read that when projecting a new anonymous object from a LINQ to Objects query, the projected object will override its Equals and GetHashCode methods so that executing any further methods that check ...
1
vote
3answers
44 views
ConvertAll ExtensionMethod in List<T> how to?
I want to write my extension method for ConvertAll method in List<T>.I have written like this below.
public static List<TOutput> MyConvertAll<TOutput>(this List<T> list, ...
0
votes
3answers
51 views
C# - Where to put interface extensions?
I am designing an interface in a C# project which will be extended with various extension methods. Now I thought of putting the static class containing the extension methods in the same file as the ...
0
votes
1answer
15 views
Fixing configuration/platform in EnvDTE for added project
I have created an add-in that... among other things, adds a c++ project to a solution.
I have a problem with adding c++ projects to solutions that contain c# or vb.net projects (I'll refer to these ...
4
votes
3answers
83 views
Create an Extension Method to handle multiple “Is” statements
In my current code, I am testing for an object's type using if/else if & is:
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
...
1
vote
3answers
71 views
Implement IEnumerable<SomeClass> extension method in SomeClass
I have a class like this:
public class SomeClass
{
public static IEnumerable<SomeClass> GetOutput(IEnumerable<SomeClass> items)
{
//Do stuff
}
}
This class is not ...
0
votes
1answer
35 views
ASP.NET MVC: How to access section from extension method?
I'm writing html extension (Razor) for javascript rendered charts.
I can edit javascript to read most values from data attributes, but sometime I need to insert directly inline javascript into the ...
1
vote
1answer
26 views
Open DTE solution from another program (not add-in)
Is it possible to modify a solution, and use envdte tools, from a command-line project ?
I have an add-in that modifies a solution. But... the changes are required for over a hundred projects... So ...
0
votes
0answers
20 views
vb.net 3.5 extension method compilation error
I am having issues getting my extension method to compile. I'm getting this error:
'EvalSubstring' is not a member of
'System.Web.UI.WebControls.DataGridItem'
I'm try to extend the ...
1
vote
3answers
46 views
ExtensionMethod specific to a class, property or method
I prefer to use a lot of extension methods, asin ToFloat, ToInt, ToLoong, ToGuid, ToSqlParameter
Now since i've been working at my current location, some people have been complaining about the sheer ...
2
votes
2answers
43 views
How to define an extension method in a scriptcs csx script
I'm playing with ScriptCS (which is awesome!) but I couldn't figure out how to define an extension method within a .csx script file.
Take this example:
using System.IO;
public static class ...
0
votes
1answer
9 views
Overload resolution failed with extension method overload
In my project I have a Helper class StringHelper which contains an String.Replace overload that accepts a StringComparison parameter.
I use this method elsewhere in the same project.
This compiles ...
2
votes
1answer
47 views
EF 5 Filtering on any column - Extension method?
I'm developing a CRM type application, and one of the features I'm implementing is to be able to view a grid of data, and then use a single text box to filter values from any of the columns. I've come ...
3
votes
3answers
48 views
ConvertNullDate extension method
What wrong this class? I try to reach extension method but cant
namespace BO
{
public static class Helper
{
public static DateTime? ConvertNullDate(this DateTime date)
{
...
2
votes
1answer
69 views
Default Value for “this” parameter in C# Extension methods
Why can't I give default parameter value to extension method's this parameter?
public static User CheckLogin(this User user = null)
{
...
}
Error 108 Cannot specify a default value for the ...
0
votes
0answers
116 views
C# or Functional Programming: if-statement as an operator (or function)
I'll start with the question itself.
Can someone give me a word or words as a method name that would be a forward-direction if-statement?
My explanation of the question will begin with an ...
4
votes
2answers
64 views
Add a LINQ or DBContext extension method to get an element if not exist then create with data in predicate (FirstOrCreate)
I'm trying to add a LINQ or DbContext extension method to get an element (FirstOrDefault) but if one does not already exist then create a new instance with data (FirstOrCreate) instead of returning ...
1
vote
0answers
53 views
Bitwise operation and Extension method with NHibernate QueryOver
I want to query a table with numeric columns that contains flags.
I've built a mapping with NHibernate XML against a SQL Server 2008 database (I show you only interesting part):
This is my enum:
...
0
votes
2answers
50 views
Do I have always put my static methods inside the class?
I have something like this:
public class Download
{
public int Id = 0; //RecordId
public string Title = null;
public StateData States = new StateData();
public ...
2
votes
2answers
38 views
Using an extension method on session a variable
I've created the following extension method:
<System.Runtime.CompilerServices.Extension()> _
Public Function ToIntegerOrDefault(ByVal valueToParse As Object, Optional ByVal defaultValue As ...
5
votes
3answers
100 views
No extension method 'First' on derived class
Given the (very simplied) code.
public class Class1
{
}
public class Class2 : Class1
{
}
public class List1 : System.Collections.Generic.IEnumerable<Class1>
{
public new ...
0
votes
1answer
32 views
Can I add an action to ApiController as extension method?
I am bulding a MCV4 Web API application, and I want to let the users add plug-ins to the application. It requires add actions to apicontrollers without modifying the orginal application.
I wonder if I ...
1
vote
1answer
36 views
extend the colorclass in c# with a static method
I try to add a method to the color class in C#
public static class ColorExtensions
{
public static System.Drawing.Color GrayTone(int Darkness)
{
return Color.FromArgb(255 - Darkness, ...
0
votes
0answers
84 views
C# Generic Extension for async methods
I'm trying to create a generic extension method for Telerik's JustMock framework.
The frame offers a method with the following signature:
IAssertable IFunc<T>.Returns(T value).
This way I can ...
0
votes
0answers
25 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 ...
1
vote
1answer
34 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 ...
7
votes
5answers
215 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
100 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
43 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
62 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
50 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
27 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
90 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
24 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
67 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
89 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
41 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
77 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
100 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
62 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
88 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
35 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
90 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
99 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 ...

