473,800 Members | 2,467 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Extension Methods questions

Some simple yes/no questions. I tried googling first and couldn't find
specific answers.
These are related to .Net 3.5 extension methods

1) I found that I would like to add properties as well as methods. Is
there such a thing as Extension Properties?

2) Can you add static extension methods to classes? The 'this' part
implies an instance.
For example, I'd like to be able to go: System.IO.File. MyCrazyMethod()

Cheers,
Steven

Aug 29 '07 #1
8 1775
Steven Nagy <le*********@ho tmail.comwrote:
Some simple yes/no questions. I tried googling first and couldn't find
specific answers.
These are related to .Net 3.5 extension methods

1) I found that I would like to add properties as well as methods. Is
there such a thing as Extension Properties?
Not yet. And yes, it's a pain, especially if you're trying to write a
fluent interface.
2) Can you add static extension methods to classes? The 'this' part
implies an instance.
For example, I'd like to be able to go: System.IO.File. MyCrazyMethod()
Not as far as I'm aware.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Aug 29 '07 #2
Hi,

"Steven Nagy" <le*********@ho tmail.comwrote in message
news:11******** *************@q 5g2000prf.googl egroups.com...
Some simple yes/no questions. I tried googling first and couldn't find
specific answers.
These are related to .Net 3.5 extension methods

1) I found that I would like to add properties as well as methods. Is
there such a thing as Extension Properties?
I do not think so, No idea why though.
Basically extension methods were a needed addition for Linq, I do not think
that for Linq you require extension Properties.

Aug 29 '07 #3
Thanks Jon and Ignacio.
Are you guys doing a lot of projects with 3.5 or even LINQ for that
matter?
(Production apps I mean, not play stuff)

Aug 30 '07 #4
Hi,

"Steven Nagy" <le*********@ho tmail.comwrote in message
news:11******** **************@ x35g2000prf.goo glegroups.com.. .
Thanks Jon and Ignacio.
Are you guys doing a lot of projects with 3.5 or even LINQ for that
matter?
(Production apps I mean, not play stuff)
Nop, in my company we do everything in 2.0 , all the new stuff I mean, we
are still supporting and developing 1.1 apps.
Aug 30 '07 #5
On Aug 30, 3:08 am, Steven Nagy <learndot...@ho tmail.comwrote:
Thanks Jon and Ignacio.
Are you guys doing a lot of projects with 3.5 or even LINQ for that
matter?
(Production apps I mean, not play stuff)
Well, I'm doing writing using VS2008 beta 2, but not a production
application.

I doubt that I'll be using .NET 3.5 in production for a while - but I
hope to start using C# 3 targeting .NET 2.0 shortly after VS2008 is
released, if it's stable enough.

Almost all the new features of C# 3 can be used with .NET 2.0 - just
not LINQ itself.

Jon

Aug 30 '07 #6
On Aug 31, 1:27 am, "Jon Skeet [C# MVP]" <sk...@pobox.co mwrote:
On Aug 30, 3:08 am, Steven Nagy <learndot...@ho tmail.comwrote:
Thanks Jon and Ignacio.
Are you guys doing a lot of projects with 3.5 or even LINQ for that
matter?
(Production apps I mean, not play stuff)

Well, I'm doing writing using VS2008 beta 2, but not a production
application.

I doubt that I'll be using .NET 3.5 in production for a while - but I
hope to start using C# 3 targeting .NET 2.0 shortly after VS2008 is
released, if it's stable enough.

Almost all the new features of C# 3 can be used with .NET 2.0 - just
not LINQ itself.

Jon
Hey I hadn't thought of that.
So I could use Extension methods, for example, but compile to a 2.0
app.

Thanks guys.

Aug 31 '07 #7
Steven Nagy <le*********@ho tmail.comwrote:
Hey I hadn't thought of that.
So I could use Extension methods, for example, but compile to a 2.0
app.
Funny you should mention extension methods - they *sort of* require
..NET 3.5 support, but you can work round it. I blogged about it
recently:

http://msmvps.com/blogs/jon.skeet/ar...nsion-methods-
and-net-2-0.aspx

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Aug 31 '07 #8
Nice one.

Sep 3 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1659
by: Samuel Siren | last post by:
Have just read about LINQ ant the new planned features of C# 3.0. I think it's fantastic, but I have a few questions about extension methods: Question 1: Syntax ------------------ Why is the syntax for an extension method like this: public int ExtMethod(this MyType t, int i, double d) { // t is this
3
1647
by: Deckarep | last post by:
I recently got into somewhat of a debate with a fellow co-worker. First I asked him if he new of a way to add a method to an existing class like enhancing a class but without using Inheritance. He asked, "Why on earth would you want to do this? Just inherit." I told him other dynamic languages can do this such as JavaScript where you can just add method to say the Array classes prototype chain. I told him I found this technique often...
4
2332
by: =?Utf-8?B?ZGF2ZQ==?= | last post by:
I can't get Extension Methods to work in Visual Basic 2008 Express. Says "Type 'Extension' is not defined." Looks like the library included with the Express edition is crippled. What am I missing? Here's the code... Imports System.Runtime.CompilerServices
3
2103
by: raylopez99 | last post by:
The headline says it all. Great minds think alike: read the blog below from three years ago, as endorsed by Ritchie, who coinvented C. BTW the below lambda expression code will not work (.Where not recognized). I am using the 'standard' using directives using System;using System.Collections.Generic;using System.Diagnostics;using System.Text; And Visual Studio 2007.
8
3353
by: Jesper Lund Stocholm | last post by:
I am currently working on converting an old .Net 1.1-application to .Net 3.5. Due to the lack of nullable datatypes in those days, a "decimal wrapper" was created that had various methods to parse objects (of varying types) as well as methods to determine if the parsed decimal was "valid", i.e. not null. With nullable types we have some of it covered when creating the functionality in .Net 3.5, but I am unsure how to create the...
4
3309
by: Rene | last post by:
Hi, I was wondering if anyone could tell me why extension methods must be declared on static classes. I mean, why not allowing them to be declared as static methods in regular instance classes? In case you are wondering, I am only curious to find out the reason for this limitation. I don't really have a need to declare extension method on non static classes. I am just curious.
1
1698
by: Simon Woods | last post by:
Hi I have 2 classes which are both instantiated by shared factory methods and both implement a common interface. Public Class Factory Public Shared Function CreateMyClass1() As MyClass1 Return New MyClass1 End Function
3
4847
by: johanatan | last post by:
When I first heard about these new features, I was very excited as it would have (if implemented as I had expected) rendered mimicking multiple inheritance almost painless in C#. Unfortunately, due to a couple limitations of the language, MI is still not attainable (at least not succinctly). 1 - Interfaces cannot define data (only properties) 2 - Extension methods cannot be used to mix in property definitions (or implement interface...
0
9691
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9551
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10505
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10035
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9090
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7580
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5606
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4149
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.