active questions tagged extension-methods - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:47:08Zhttp://stackoverflow.com/feeds/tag/extension-methodshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/258988/will-the-dynamic-keyword-in-c4-support-extension-methods6Will the dynamic keyword in C#4 support extension methods?Motti2008-11-03T15:28:58Z2009-12-17T08:09:24Z
<p>I'm <a href="http://channel9.msdn.com/shows/Going+Deep/Inside-C-40-dynamic-type-optional-parameters-more-COM-friendly/" rel="nofollow">listening to a talk</a> about <strong>C#4</strong>'s <code>dynamic</code> keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?</p>
<pre><code>public static class StrExtension {
public static string twice(this string str) { return str + str; }
}
...
dynamic x = "Yo";
x.twice(); // will this work?
</code></pre>
http://stackoverflow.com/questions/1913955/extension-method-convertall2Extension Method ConvertAllReedBrown2009-12-16T11:08:01Z2009-12-16T12:08:15Z
<p>What is the proper use of ConverAll ? Will it convert one type to another type?</p>
<p>like </p>
<pre><code>List<int> intList = new List<int>();
intList.Add(10);
intList.Add(20);
intList.Add(30);
intList.Add(33);
var query= intList.ConvertAll(x=>(double)x);
</code></pre>
<p>for this i can use cast or OfType<>.</p>
http://stackoverflow.com/questions/1903965/object-to-dataview-or-dataset-or-datatable-and-back-to-object0Object To DataView or DataSet or DataTable and back to objectPerpetualcoder2009-12-14T22:29:25Z2009-12-14T22:52:45Z
<p>We have a mish-mash app with a legacy module that still uses DataSets, DataViews and DataTables however we have most of the the databases ORMed except the DB for this Module. I was wondering if someone could give me pointers as to how to go about building extensions like</p>
<pre><code>/* generates a dataset called CustomerDS with
DataTable called Customer uses property names as DataColumn name */
var dataset =_customer.AsDataSet();
/* Converts the dataset to required object or
throws exception if its cant convert*/
var customerEntity = _dataset.ToObject<Customer>();
</code></pre>
<p>I dont know when we will get time to work on other layers of the app and free it from DataSets. I might sound crazy but its just a thought. I get nightmares when i need to support/bug fix that app.</p>
http://stackoverflow.com/questions/1901606/collection-randomization-using-extension-method2Collection Randomization using Extension Method [closed]Russel2009-12-14T15:34:42Z2009-12-14T16:03:55Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1287567/c-is-using-random-and-orderby-a-good-shuffle-algorithm">C#: Is using Random and OrderBy a good shuffle algorithm?</a> </p>
</blockquote>
<p>I want to create an extension method which should shuffle the items in the collection.</p>
<p>Can i improve the following?</p>
<pre><code>public static IList<T> RandomList<T>(this IList<T> source)
{
if (source.Count <= 0) throw new ArgumentException("No Item to Randomize");
for (int i =source.Count-1 ; i>0; i--)
{
int RandomIndex = Rnd.Next(i + 1);
T temp = source[i];
source[i] = source[RandomIndex];
source[RandomIndex] = temp;
}
return source;
}
</code></pre>
http://stackoverflow.com/questions/172658/operator-overloading-with-c-extension-methods14Operator Overloading with C# Extension MethodsBlinky2008-10-05T20:59:03Z2009-12-12T19:31:43Z
<p>I'm attempting to use extension methods to add an operater overload to the C# StringBuilder class. Specifically, given StringBuilder sb, I'd like sb += "text" to become equivalent to sb.Append("text");</p>
<p>Here's the syntax for creating an extension method for StringBuilder:</p>
<pre><code>public static class sbExtensions
{
public static StringBuilder blah(this StringBuilder sb)
{
return sb;
}
}
</code></pre>
<p>It successfully adds the "blah" extension method to the StringBuilder.</p>
<p>Unfortunately, operator overloading does not seem to work:</p>
<pre><code>public static class sbExtensions
{
public static StringBuilder operator +(this StringBuilder sb, string s)
{
return sb.Append(s);
}
}
</code></pre>
<p>Among other issues, the keyword 'this' is not allowed in this context.</p>
<p>Are adding operator overloads via extension methods possible? If so, what's the proper way to go about it?</p>
http://stackoverflow.com/questions/249222/can-i-add-extension-methods-to-an-existing-static-class6Can I add extension methods to an existing static class?secretGeek2008-10-30T03:54:04Z2009-12-11T15:01:32Z
<p>I'm a fan of extension methods in C#, but haven't had any success adding an extension method to a static class, such as Console.</p>
<p>For example, if I want to add an extension to Console, called 'WriteBlueLine', so that I can go:</p>
<pre><code>Console.WriteBlueLine("This text is blue");
</code></pre>
<p>I tried this by adding a local, public static method, with Console as a 'this' parameter... but no dice! </p>
<pre><code>public static class Helpers {
public static void WriteBlueLine(this Console c, string text)
{
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine(text);
Console.ResetColor();
}
}
</code></pre>
<p>This didn't add a 'WriteBlueLine' method to Console... am I doing it wrong? Or asking for the impossible?</p>
http://stackoverflow.com/questions/505703/how-to-chain-views-in-django2How to chain views in Django?Soviut2009-02-03T01:13:26Z2009-12-11T12:28:25Z
<p>I'm implementing <a href="http://www.b-list.org/about/" rel="nofollow">James Bennett</a>'s excellent <a href="http://code.google.com/p/django-contact-form/" rel="nofollow">django-contact-form</a> but have hit a snag. My contact page not only contains the form, but also additional flat page information. </p>
<p>Without rewriting the existing view the contact form uses, I'd like to be able to wrap, or chain, the views. This way I could inject some additional information via the context so that both the form and the flat page data could be rendered within the same template.</p>
<p>I've heard it mentioned that this is possible, but I can't seem to figure out how to make it work. I've created my own wrapper view, called the contact form view, and attempted to inspect the HttpResponse object for an attribute I can append to, but I can't seem to figure out which, if any, it is.</p>
<p><strong>EDIT:</strong> James commented that the latest code can new be found <a href="http://bitbucket.org/ubernostrum/django-contact-form/overview/" rel="nofollow">here</a> at BitBucket.</p>
http://stackoverflow.com/questions/1873264/is-it-possible-to-refactor-this-extension-method17Is it possible to refactor this extension method?Pure.Krome2009-12-09T11:25:02Z2009-12-11T00:02:25Z
<p>I have the following extension method:</p>
<pre><code>public static void ThrowIfArgumentIsNull<T>(this T value, string argument)
where T : class
{
if (value == null)
{
throw new ArgumentNullException(argument);
}
}
</code></pre>
<p>and this is an example of its usage....</p>
<pre><code>// Note: I've poorly named the argument, on purpose, for this question.
public void Save(Category qwerty)
{
qwerty.ThrowIfArgumentIsNull("qwerty");
....
}
</code></pre>
<p>works 100% fine.</p>
<p>But, I don't like how I have to provide the name of the variable, just to help my exception message.</p>
<p>I was wondering if it's possible to refactor the extension method, so it could be called like this...</p>
<pre><code>qwerty.ThrowIfArgumentIsNull();
</code></pre>
<p>and it automatically figures out that the name of the variable is 'qwerty' and therefore uses that as the value for the ArgumentNullException.</p>
<p>Possible? I'm assuming reflection could do this?</p>
http://stackoverflow.com/questions/1335348/how-to-add-custom-columns-to-a-table-that-linq-to-sql-can-translate-to-sql0How to add custom columns to a table that LINQ to SQL can translate to SQLgfrizzle2009-08-26T14:57:22Z2009-12-08T17:01:37Z
<p>I have a table that contains procedure codes among other data (let's call it "MyData"). I have another table that contains valid procedure codes, their descriptions, and the dates on which those codes are valid. Every time I want to report on MyData and include the procedure description, I have to do a lookup similar to this:</p>
<pre><code>From m in dc.MyDatas _
Join p in dc.Procedures On m.proc_code Equals p.proc_code _
Where p.start_date <= m.event_date _
And If(p.end_date.HasValue, p.end_date.Value, Now) >= m.event_date _
Select m.proc_code, p.proc_desc
</code></pre>
<p>Since there are many places where I want to show the procedure description, this gets messy. I'd like to have the lookup defined in one place, so I tried putting this in an extension of MyData:</p>
<pre><code>Partial Public Class MyData
Public ReadOnly Property ProcedureDescription() As String
Get
Dim dc As New MyDataContext
Return _
(From p in dc.Procedures _
Where p.proc_code = Me.proc_code _
And p.start_date <= Me.event_date _
And If(p.end_date.HasValue, p.end_date.Value, Now) >= Me.event_date _
Select p.proc_desc).SingleOrDefault
End Get
End Property
End Class
</code></pre>
<p>Which works when displaying data, but you can't use it in a query, because it doesn't know how to turn it into a SQL statement:</p>
<pre><code>Dim test = _
From x In dc.MyDatas _
Select x.proc_code _
Where x.ProcedureDescription.Contains("test")
</code></pre>
<p><strong>Error</strong>: The member 'MyProject.MyData.ProcedureDescription' has no supported translation to SQL.</p>
<p>Is there a way to turn a complex lookup (i.e. a non-trivial join) like this into something SQL can recognize so that I can define it in one place and just reference the description as if it were a field in MyData? So far the only thing I can think of is to create a SQL view on MyData that does the linking and bring that into my data context, but I'd like to try to avoid that. Any ideas would be welcomed. Thanks.</p>
http://stackoverflow.com/questions/1866141/how-to-create-a-flexible-extension-method-for-generic-lists0How to create a flexible extension method for generic lists?Sem Dendoncker2009-12-08T10:40:47Z2009-12-08T12:41:27Z
<p>Hello,</p>
<p>I have 2 objects Project and License. They both inherit from the object Entity (abstract class).</p>
<p>Now I have an extension method "GetNewId" that contains logic to get the next id in a list of entities.</p>
<p>I've defined this method as an extension method, but the problem is that List (which is also a list of entities) and List don't see this method.</p>
<p>I guess that this problem will occur with any generic list containing objects that inherit from the same base class.</p>
<p>Is there a solution for this problem?</p>
<p>edit: working in C#</p>
http://stackoverflow.com/questions/8042/extension-interface-patterns4Extension interface patternsKeith2008-08-11T18:13:44Z2009-12-07T10:26:19Z
<p>The new extensions in .Net 3.5 allow functionality to be split out from interfaces.</p>
<p>For instance in .Net 2.0</p>
<pre><code>public interface IHaveChildren {
string ParentType { get; }
int ParentId { get; }
List<IChild> GetChildren()
}
</code></pre>
<p>Can (in 3.5) become:</p>
<pre><code>public interface IHaveChildren {
string ParentType { get; }
int ParentId { get; }
}
public static class HaveChildrenExtension {
public static List<IChild> GetChildren( this IHaveChildren ) {
//logic to get children by parent type and id
//shared for all classes implementing IHaveChildren
}
}
</code></pre>
<p>This seems to me to be a better mechanism for many interfaces. They no longer need an abstract base to share this code, and functionally the code works the same. This could make code more maintainable and easier to test.</p>
<p>The only disadvantage being that an abstract bases implementation can be virtual, but can that be worked around (would an instance method hide an extension method with the same name? would it be confusing code to do so?)</p>
<p>Any other reasons not to regularly use this pattern?</p>
<p><hr /></p>
<p>Clarification:</p>
<p>Yeah, I see the tendency with extension methods is to end up with them everywhere. I'd be particularly careful having any on .Net value types without a great deal of peer review (I think the only one we have on string is a <code>.SplitToDictionary()</code> - similar to <code>.Split()</code> but taking a key-value delimiter too)</p>
<p>I think there's a whole best practice debate there ;-)</p>
<p>(Incidentally: DannySmurf, your PM sounds scary.)</p>
<p>I'm specifically asking here about using extension methods where previously we had interface methods.</p>
<p><hr /></p>
<p>I'm trying to avoid lots of levels of abstract base classes - the classes implementing these models mostly already have base classes. I think this model could be more maintainable and less overly-coupled than adding further object hierarchies.</p>
<p>Is this what MS have done to IEnumerable and IQueryable for Linq?</p>
http://stackoverflow.com/questions/877496/vb-net-extension-method-in-view-using-asp-net-mvc3VB.NET Extension Method in View using ASP.NET MVCJon2009-05-18T12:28:54Z2009-12-06T18:37:06Z
<p>I ran into a strange issue over the weekend while I was working on an asp.net mvc project in vb.net. I created an extension method to convert an integer to the corresponding month it is associated with. I tested the extension method in a console application so I know it is working. </p>
<p>In my asp.net mvc project I have a view and want to call the extension method but I get an error that the extension method is not recognized. I imported the namespace it was contained in and still couldn't shake the error. Any idea what's going on? I don't have my code with me, but I can post that tonight if it will help. Thanks!</p>
<p>Extension Method:</p>
<pre><code>Imports System.Runtime.CompilerServices
Module SiteExtensions
<Extension()> _
Public Function ConvertToMonth(ByVal monthNumber As Integer) As String
Dim month As String = String.Empty
Select Case monthNumber
Case 1
month = "January"
Case 2
month = "February"
Case 3
month = "March"
Case 4
month = "April"
Case 5
month = "May"
Case 6
month = "June"
Case 7
month = "July"
Case 8
month = "August"
Case 9
month = "September"
Case 10
month = "October"
Case 11
month = "November"
Case 12
month = "December"
End Select
Return month
End Function
End Module
</code></pre>
<p>View:</p>
<pre><code><% For Each m As Integer In DirectCast(ViewData("Months"), IEnumerable)%>
<a href="#"><%=m.ConvertToMonth()%><br /></a>
<%Next%>
</code></pre>
<p>Error is: "ConvertToMonth is not a member of Integer"</p>
<p>Jon</p>
http://stackoverflow.com/questions/1848411/how-to-create-extension-methods-for-types0How to create extension methods for TypesCodism2009-12-04T17:18:51Z2009-12-04T17:43:51Z
<p>I am writing an extension method for parsing JSON string for any given type. I wanted to use the method on types instead of instances like many examples we already know, but I somewhat feel it is not supported by Visual Studio. Can someone enlighten me here? The following is the method:</p>
<pre><code>public static T ParseJson<T>(this T t, string str) where T: Type
{
if (string.IsNullOrEmpty(str)) return null;
var serializer = new JavaScriptSerializer();
var obj = serializer.Deserialize<T>(str);
return obj;
}
</code></pre>
<p>I want to call the method in this fashion:</p>
<pre><code>var instance = MyClass.ParseJson(text);
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1847427/method-signature-for-ilistt-split-extension-method2Method signature for IList<T>.Split() extension methodIan Kemp2009-12-04T14:51:21Z2009-12-04T15:10:36Z
<p>I'd like to be able to write the following code:</p>
<pre><code>// contains 500 entries
IList<string> longListOfStrings = ...
// shorterListsOfStrings is now an array of 5 IList<string>,
// with each element containing 100 strings
IList<string>[] shorterListsOfStrings = longListOfStrings.Split(5);
</code></pre>
<p>To do this I have to create a generic extension method called <code>Split</code> that looks something like the following:</p>
<pre><code>public static TList[] Split<TList>(this TList source, int elementCount)
where TList : IList<>, ICollection<>, IEnumerable<>, IList, ICollection, IEnumerable
{
return null;
}
</code></pre>
<p>But when I try to compile that, the compiler tells me that <code>IList<></code>, <code>ICollection<></code> and <code>IEnumerable<></code> require a type argument. So, I changed the definition to the following:</p>
<pre><code>public static TList<TType>[] Split<TList<TType>>(this TList<TType> source, int elementCount)
where TList : IList<TType>, ICollection<TType>, IEnumerable<TType>, IList, ICollection, IEnumerable
{
return null;
}
</code></pre>
<p>but then the compiler complains that it can't find type <code>TList</code>. I have an idea that I'm overcomplicating things but I can't see how... any help is appreciated!</p>
http://stackoverflow.com/questions/1839459/c-termination-in-aggregate1C# -Termination in Aggregate( ) threadpool2009-12-03T11:51:36Z2009-12-03T12:20:10Z
<p>From the following simulation</p>
<pre><code>int[] amountWithdrawal = { 10, 20, 30, 140, 50, 70 };
amountWithdrawal.Aggregate(100, (balance, withdrawal) =>
{
Console.WriteLine("balance :{0},Withdrawal:{1}", balance, withdrawal);
if (balance >= withdrawal)
{
return balance - withdrawal;
}
else return balance;
}
);
</code></pre>
<p>I want to terminate the Aggregation <code>when the balance is less than the withdrawal</code>.But my code travels the entire array.How to terminate it?</p>
http://stackoverflow.com/questions/1838655/c-running-total-using-aggregate0C# - Running Total using Aggregate()threadpool2009-12-03T09:11:05Z2009-12-03T09:21:50Z
<p>This question was asked at interview.I need to have running total (<strong>only using Aggregate()</strong> )</p>
<p>from array</p>
<p>(i.e) </p>
<pre><code>int[] array={10,20,30};
Expected output
10
30
60
</code></pre>
<p>when i use Aggregate (<strong>I applied some worst logic</strong>)</p>
<pre><code>array.Aggregate((a, b) => { Console.WriteLine(a + b); return (a + b); });
</code></pre>
<p>1) <code>It prints 30,60</code> ,for me there is no use of return (a+b).</p>
<p>2) In order to print <code>10</code> , i have to modify the array by adding element zero
(i.e) {0,10,20,30}.</p>
<p>Is there any neat work could turn it out?</p>
http://stackoverflow.com/questions/1831072/c-extension-method-to-return-random-alphabet0C# Extension Method to return random alphabetthreadpool2009-12-02T06:49:04Z2009-12-02T11:58:40Z
<p>How to develop an extension method that may return random character(single character) from alphabet (a,b,....z).</p>
<pre><code>public static char RandomLetter(this char randomchar)
{
}
</code></pre>
http://stackoverflow.com/questions/1827719/c-sorting-using-extension-method8C# - Sorting using Extension Methodthreadpool2009-12-01T17:33:47Z2009-12-01T20:30:49Z
<p>I want to sort a list of person say</p>
<pre><code>List<Person> persons=new List<Person>();
persons.Add(new Person("Jon","Bernald",45000.89));
persons.Add(new Person("Mark","Drake",346.89));
persons.Add(new Person("Bill","Watts",456.899));
</code></pre>
<p>based on</p>
<pre><code>public enum CompareOptions
{
ByFirstName,
ByLastName,
BySalary
}
public enum SortOrder
{
Ascending,
Descending
}
</code></pre>
<p>using lambda expression what is the way to go for sorting?</p>
<pre><code> public static List<Person> SortPeople(this List<Person> lst,
CompareOptions opt1,SortOrder ord)
{
lst.Sort((p,op1,op2)=>{ how to apply lambda expression here});
}
</code></pre>
http://stackoverflow.com/questions/1826711/c-non-vowel-words0C# non-vowel wordsthreadpool2009-12-01T14:56:01Z2009-12-01T15:48:56Z
<p>I want an extension method that needs to return non-vowel words.I designed </p>
<pre><code> public static IEnumerable<T> NonVowelWords<T>(this IEnumerable<T> word)
{
return word.Any(w => w.Contains("aeiou"));
}
</code></pre>
<p>I received error as "T" does not contain extanesion method "Contains".</p>
http://stackoverflow.com/questions/1677825/asp-net-mvc-2-preview-2-extend-labelextensions-labelfor0ASP.NET MVC 2 Preview 2 - Extend LabelExtensions.LabelForplancake2009-11-05T01:38:35Z2009-12-01T12:06:26Z
<p>I'm wondering if anyone has attempted to write an extension helper to the LabelExtensions.LabelFor HtmlHelper in MVC2? This would be useful for me in that my app requires that I always wrap labels in a <td> tag with a class attribute. Rather than have that code repeated in the View I thought I could write a little extension method:</p>
<pre><code>public static MvcHtmlString RenderLabelFor<TModel, TValue> (
this HtmlHelper html,
Expression<Func<TModel, TValue>> value,
object htmlAttributes
) where TModel : class
{
TagBuilder builder = new TagBuilder("td");
builder.MergeAttributes(new RouteValueDictionary(attributes)); // to convert an object into an IDictionary
builder.InnerHtml = LabelExtensions.LabelFor(html, value).ToString();
return MvcHtmlString.Create(builder.ToString(TagRenderMode.Normal));
}
</code></pre>
<p>However I get the error on the LabelFor line:</p>
<p>The type arguments for method 'System.Web.Mvc.Html.LabelExtensions.LabelFor(System.Web.Mvc.HtmlHelper, System.Linq.Expressions.Expression>)' cannot be inferred from the usage. Try specifying the type arguments explicitly. </p>
<p>Can anyone throw me a bone on this one?</p>
http://stackoverflow.com/questions/1820581/extension-methods-in-linq-to-entity-expressions1Extension Methods in Linq to entity-expressionsFreddy2009-11-30T15:44:24Z2009-11-30T15:55:22Z
<p>Hi,</p>
<p>If I create an extension method for my entity objects and try to use it in a LINQ-expression I get an error. Is this a limitation and something I cant do or am I missing something?</p>
<p>regards
Freddy</p>
http://stackoverflow.com/questions/988817/how-can-i-write-clean-code-for-a-class-that-uses-modular-extension-methods0How can I write clean code for a class that uses modular extension methods?firoso2009-06-12T20:12:58Z2009-11-28T23:00:02Z
<p>I'm trying to do something rather... unique, and maybe there's a far better way to do it but... I'm doing an inversion of control(ish) system that uses extension methods to enable/disable components of the class, so before I get into more detail and confuse you, lets look at some code!</p>
<pre><code>using TestComponents.CommunicationProtocols.RS232;
//this brings in the
//ConnectRS232 extension method
namespace TestMeNamespace
{
public class Test //Although this class is defined here, we extend it above
{
public void Start()
{
this.ConnectRS232(1, 9600); //calls the ConnectRS232 extension method
}
}
}
</code></pre>
<p>So in short, the using declaration extends Test in the same file that we DEFINE test.
(inheritance would be fine as well) However there are some problems with this! first of all, the ugly requisite "this". blech. secondly it's a messy co-dependant system.</p>
<p>Here's what I'm attempting to achieve:</p>
<ul>
<li>I want a way to easily extend static methods to a class (using declarations are fine)</li>
<li>I want to make statements simple: ConnectRS232();</li>
<li>I want to not have to futz with partial classes if I don't have to.</li>
<li>I'd be fine with using interface inheritance.</li>
</ul>
<p>Feel free to ask me additional questions via comments but please don't post an answer unless you have an ANSWER!</p>
<p>Edit: In lieu of questions raised, I'm doing some JIT compilation of C#script (www.cs-script.com) in my system, and also these scripts will be mostly written by non-programmers who have been using a really "special" proprietary language for scripting for years. I want to keep things simple as hell, and a whole bunch of "this" calls look like clutter.</p>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover124What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-07T06:47:21Z2009-11-28T08:42:36Z
<p>Let's make a list of answers where you post your excellent and favorite <a href="http://en.wikipedia.org/wiki/Extension%5Fmethod" rel="nofollow">extension methods</a>. </p>
<p>The requirement is that the full code must be posted and a example and an explanation on how to use it.</p>
<p>Based on the high interest in this topic I have setup an Open Source Project called extensionoverflow on <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow"><strong>Codeplex</strong></a>. </p>
<p><strong>Please mark your answers with an acceptance to put the code in the Codeplex project.</strong></p>
<p><strong>Please post the full sourcecode and not a link.</strong></p>
<p><strong>Codeplex News:</strong></p>
<p>11.11.2008 <strong>XmlSerialize / XmlDeserialize</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&changeSetId=17001" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&changeSetId=17001" rel="nofollow">Unit Tested</a>.</p>
<p>11.11.2008 There is still room for more developers. ;-) <strong>Join NOW!</strong></p>
<p>11.11.2008 Third contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>, welcome to <a href="http://www.codeplex.com/site/users/view/BKristensen" rel="nofollow">BKristensen</a></p>
<p>11.11.2008 <strong>FormatWith</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&changeSetId=16839" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&changeSetId=16839" rel="nofollow">Unit Tested</a>.</p>
<p>09.11.2008 Second contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>. welcome to <a href="http://stackoverflow.com/users/3055/chakrit">chakrit</a>.</p>
<p>09.11.2008 We need more developers. ;-)</p>
<p>09.11.2008 <strong>ThrowIfArgumentIsNull</strong> in now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=278942&changeSetId=16468" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284112&changeSetId=16468" rel="nofollow">Unit Tested</a> on Codeplex.</p>
http://stackoverflow.com/questions/954198/what-is-the-best-or-most-interesting-use-of-extension-methods-youve-seen36What is the best or most interesting use of Extension Methods you've seen?Pwninstein2009-06-05T03:47:01Z2009-11-26T02:09:45Z
<p>I'm starting to really love extension methods... I was wondering if anyone her has stumbled upon one that really blew their mind, or just found clever. </p>
<p>An example I wrote today:</p>
<p><strong>Edited due to other users' comments:</strong></p>
<pre><code>public static IEnumerable<int> To(this int fromNumber, int toNumber) {
while (fromNumber < toNumber) {
yield return fromNumber;
fromNumber++;
}
}
</code></pre>
<p>This allows a for loop to be written as a foreach loop:</p>
<pre><code>foreach (int x in 0.To(16)) {
Console.WriteLine(Math.Pow(2, x).ToString());
}
</code></pre>
<p>I can't wait to see other examples! Enjoy!</p>
http://stackoverflow.com/questions/1776020/c-interesting-params-of-ref-feature-any-workarounds1[C#] Interesting "params of ref" feature, any workarounds?kornelijepetak2009-11-21T16:55:05Z2009-11-21T18:43:25Z
<p>I wonder if there's any way something like this would be possible for value types...</p>
<pre><code>public static class ExtensionMethods {
public static void SetTo(this Boolean source, params Boolean[] bools) {
for (int i = 0; i < bools.Length; i++) {
bools[i] = source;
}
}
}
</code></pre>
<p>then this would be possible:</p>
<pre><code>Boolean a = true, b, c = true, d = true, e;
b.SetTo(a, c, d, e);
</code></pre>
<p>Of course, this does not work because the bools are a value type so they are passed into the function as a value, not as a reference.</p>
<p>Other than wrapping the value types into reference types (by creating another class), is there any way to pass a variable into function by the reference (ref) while using params modifier?</p>
http://stackoverflow.com/questions/1773900/which-dll-contains-generics-extension-methods2which dll contains generics extension methods?tbischel2009-11-20T23:42:33Z2009-11-20T23:58:51Z
<p>I'm trying to dynamically compile source code using the CodeDom.Compiler stuff, which means I need to reference the basic assemblies manually. The source code that I am compiling must be able to access the basic list extension methods, for for instance, Max(), Min(), or Sum(), and probably lambda expressions as well.</p>
<p>When I compile the source, it says I'm missing the required assembly... currently I include System.dll, and System.Core.dll.</p>
<p>Which dll do I need to get the extension methods for generics?</p>
http://stackoverflow.com/questions/1759602/what-is-so-great-about-extension-methods2What is so great about extension methods? [closed]Dan2009-11-18T22:26:54Z2009-11-18T22:38:30Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/487904/what-advantages-of-extension-methods-have-you-found">What Advantages of Extension Methods have you found?</a> </p>
</blockquote>
<p>All right, first of all, I realize this sounds controversial, but I don't mean to be confrontational. I am asking a serious question out of genuine curiosity (or maybe <em>puzzlement</em> is a better word).</p>
<p>Why were extension methods ever introduced to .NET? What benefit do they provide, aside from making things look nice (and by "nice" I mean "deceptively like instance methods")?</p>
<p>To me, any code that uses an extension method like this:</p>
<pre><code>Thing initial = GetThing();
Thing manipulated = initial.SomeExtensionMethod();
</code></pre>
<p>is misleading, because it implies that <code>SomeExtensionMethod</code> is an instance member of <code>Thing</code>, which misleads developers into believing (at least as a gut feeling... you may deny it but I've definitely observed this) that (1) <code>SomeExtensionMethod</code> is probably implemented efficiently, and (2) since <code>SomeExtensionMethod</code> actually looks like it's <em>part</em> of the <code>Thing</code> class, surely it will remain valid if <code>Thing</code> is revised at some point in the future (as long as the author of <code>Thing</code> knows what he/she's doing).</p>
<p>But the fact is that extension methods don't have access to protected members or any of the internal workings of the class they're extending, so they're just as prone to breakage as any other static methods.</p>
<p>We all know that the above could easily be:</p>
<pre><code>Thing initial = GetThing();
Thing manipulated = SomeNonExtensionMethod(initial);
</code></pre>
<p>To <em>me</em>, this seems a lot more, for lack of a better word, <strong>honest</strong>.</p>
<p>What am I missing? Why do extension methods exist?</p>
http://stackoverflow.com/questions/1753920/how-do-i-write-a-generic-method-that-takes-different-types-as-parameters1How do I write a generic method that takes different types as parameters?Daniel T.2009-11-18T05:52:25Z2009-11-18T08:41:59Z
<p>I have the following extension method to add the elements in one collection to another collection:</p>
<pre><code>public static void AddRange<T>(this ICollection<T> collection, IEnumerable<T> list)
{
foreach (var item in list)
{
collection.Add(item);
}
}
</code></pre>
<p>This works fine if the IEnumerable list is the same type as the ICollection I'm trying to add it to. However, if I have something like this:</p>
<pre><code>var animals = new List<Animal>();
var dogs = new List<Dog>(); // dog is a subclass of animal
animals.AddRange(dogs); // this line has a compiler error, it can't infer the type
</code></pre>
<p>How do I modify my extension method to be able to do something like this, if the type of the IEnumerable is a subclass (or implements the interface) of the T type?</p>
http://stackoverflow.com/questions/1752194/ienumerable-extension-methods-on-an-enum1IEnumerable Extension Methods on an EnumHawker2009-11-17T22:07:31Z2009-11-17T22:41:35Z
<p>I have an enum(below) that I want to be able to use a LINQ extension method on.</p>
<pre><code>enum Suit{
Hearts = 0,
Diamonds = 1,
Clubs = 2,
Spades = 3
}
</code></pre>
<p>Enum.GetValues(...) is of return type System.Array, but I can't seem to get access to a ToList() extension or anything else of that sort.</p>
<p>I'm just looking to write something like...</p>
<pre><code>foreach(Suit s in Enum.GetValues(typeof(Suit)).Select(x=>x).Where(x=> x != param)){}
</code></pre>
<p>Is there something I'm missing, or can someone explain to me why this isn't possible?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1750263/is-it-possible-to-constrain-a-generic-parameter-to-be-a-subtype-of-the-current-ob4Is it possible to constrain a generic parameter to be a subtype of the current object?Jack Ryan2009-11-17T16:58:34Z2009-11-17T17:40:27Z
<p>Here's an interesting problem that I have just come across. It is possible to do what I want using extension methods, but does not seem possible to do with members of the class itself.</p>
<p>With extension Methods it is possible to write a method that has a signature that looks like this:</p>
<pre><code>public static void DoStuff<T>(this T arg1, T arg2)
</code></pre>
<p>this enforces that both arguments are of whatever type you care calling it on. This becomes more useful when used with delegates.</p>
<pre><code>public static void DoStuff<T>(this T arg1, Action<T> arg2)
</code></pre>
<p>However I cannot get this to work with members. There is no such constraint as this:</p>
<pre><code>public void DoStuff<T>(T arg1) where T : typeof(this)
</code></pre>
<p>if this did work then you could define a method on your base class like this (I've used streams as they are a built in hierarchy in .NET):</p>
<pre><code>class Stream
{
public void DoStuff<T>(T stream) where T : this
{
}
}
</code></pre>
<p>and then on a subclass it would not be possible to call it like this:</p>
<pre><code>ByteStream bs = new ByteStream()
bs.DoStuff(new Stream()) // Error! DoStuff() should be inferred as DoStuff<ByteStream>()
</code></pre>
<p>Is there any way of doing this? I believe that automatically inferring the types from the arguments, and extension methods are syntactic sugar. And that is probably why it works; because the extension methods are replaced by static calls, which then allow the type to be inferred.</p>
<p>I ask because I am trying to move an extension method into a common base class, and cannot get it to compile without adding the type information.</p>
<p>To clarify. This isn't a case of just adding <code>where T : MyType</code> because if i create a type called <code>MySubType</code> that inherits from <code>MyType</code> I will be able to call <code>DoStuff</code> on an instance of <code>MySubType</code> and pass a <code>MyType</code> as the parameter. This also means that in the case where it takes an <code>Action<T></code> I will be unable to call methods of <code>MySubType</code> without casting first.</p>