Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP inlist() in c#
Message
From
03/10/2008 12:52:55
 
 
To
02/10/2008 06:13:55
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01320903
Message ID:
01352597
Views:
51
>>>>Cool.
>>>>I can't actually remember what we were trying to do but I like the way you did it !
>>>>
>>>>But I guess that since extension methods are, under the hood, built as regular methods then generics should work in the same way.
>>>>
>>>>Best,
>>>>Viv.
>>>__
>>>
>>>Yeah, it's a long time ago. When I read about them I felt so excited I had to post it ;-)
>>
>>Also worth remembering that you can apply extension methods to Interfaces as well.
>>Regards,
>>Viv
>_________
>
>Yes, - I saw an example of that - need time to digest that
>(Accelerated C# 2008 - apress - pages 415 +)
>
>I have not compiled this - just typed it
>
>ps: LessThan, GreaterThan signs replaced by { and } - Michel is eating them
>
>public static class MyExtensions
>{
>    public static IEnumerable {R} Transform{T, R}(this IEnumerable{T} input, Func{T, R} op)
>    {
>        foreach( var item in input)
>        {
>            yield return op (item) ;
>        }
>    }
>}
>
>
>cheers,

I also just discovered that you can apply extension methods to enums !
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform