Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Static extension methods

So I know that Extension methods are for object instances only as in doing

public static string stringBig(this string inString) {
     return inString.ToUpper();
}

Only works for an instance of string

However I am trying to make something that function like Double.TryParse so that I don't have to do

Double myDouble = someOtherDouble.DoubleParseDifferent("4.324802348203498");

I'd like to be able to do something like

Double myDouble = Double.DoubleParseDifferent(someRandomString);

Now I know that I can't actually do this so what would be some alternative methods or ways I could approach this.

share|improve this question
1  
@Brook yes it is a dupe, I looked forever and didn't find that question. Thanks :) – msarchet Jan 5 '11 at 20:23

marked as duplicate by heavyd, user414076, R. Martinho Fernandes, Bill the Lizard Jan 6 '11 at 1:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

The only possible alternative way for implementing TryParse I can think of (since what you're asking for is not possible) would be creating a normal static method, but returning a nullable.

public static double? TryParseEx(string value) { /* new improved parse code here */ }

var result = TryParseEx("1234.56");

That way you would not need a output parameter like the normal TryParse...

If !result.HasValue, then the parse was not successful. Otherwise, just read the result.Value property to get the parsed result.

share|improve this answer
hmmm this may be the style of thought I may go for doing this. I know what I was asking for wasn't possible which is why I wanted some other way. – msarchet Jan 5 '11 at 21:04

You can make a class with a similar name:

static class MyDouble { ... }
share|improve this answer

Since you're adding a string parsing method, why not add an extension to string

public static Double ParseDifferent( this string inString) {
     return ...
}
share|improve this answer
It was all just example typeage, but like Double.Parse – msarchet Jan 5 '11 at 20:22
Still, adding a Parse method to the source type makes sense. Otherwise your own static MyDouble class as @SLaks mentions is the best bet. – Paul Alexander Jan 5 '11 at 21:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.