vote up 2 vote down star

I have got a very simple function that takes anything in as an object, but generally a string, and attempts to format it in a specific date format that we use for reports at work.

The function is generally called using the OnRowDataBound event of a GridView and returns the date as a string if it could parse it or the original input as a string.

Here is the function:

public string FormatDate(object input)
{
    DateTime output;

    return DateTime.TryParse(input.ToString(), out output)
        ? output.ToString("dd-MMM") : input.ToString();
}

Maybe I am being picky but the issue I have is the creation of a variable, in this case a DateTime object called output, which is created purely for the output of the TryParse function which I then convert to string in the format I specify.

Is there a better, more concise method of doing this?

flag

8  
I'm at a loss as to why you're at all worried about this. – Michael Burr Jun 5 at 18:07
2  
why do you care that you are creating a variable? Unless you are doing embedded programming, adding in one variable for the sake of code readability is worth it. – yx Jun 5 at 18:08
1) dont try to outsmart the compiler. 2) don't obfuscate your code – hometoast Jun 5 at 18:15
@Michael - Sorry I didn't intend my query to come across as me being concerned I am just interested in making my code more concise and avoid putting strain on things by declaring more variables than is necessary if another method was possible. @hometoast - I wasn't aware of any obfuscation in that function? – Ian Roke Jun 5 at 18:25
@Ian - I wouldn't worry about straining things for something like this - local variables are generally cheap enough to be considered free. There may be exceptions for value types that have complex constructors, but in general they shouldn't. Of course, if you're newing up an object, there may be times that should be taken into account, but even then you should usually worry about that only if you know it's an issue, not because it's another line of source code. – Michael Burr Jun 5 at 18:36
show 1 more comment

8 Answers

vote up 2 vote down check

I'm afraid not, since it's an out parameter and the variable will have to be declared on the stack. I'm a little surprised by your code though, if you get a date you format it, and if the parsing fails you just display the string as-is?

link|flag
1  
That seems like sensible default behavior to me – Gabe Moothart Jun 5 at 18:11
I actually kind of like the approach; in the best case the user gets the data in the preferred format, in the worst case the user gets to see something else that may very well still make sense to him/her. – Fredrik Mörk Jun 5 at 18:13
I'm not saying it's wrong, just wondering aloud. I can see the point. Maybe it should display the original string with some visual cue that it wasn't parsed all right. – Yann Schwartz Jun 5 at 18:14
Agreed. Regarding the code: As a caller of that public method, I certainly expect a modified representation of the date - or an error of some kind (null, perhaps). Returning the provided value has its place, but I'd somehow indicate that possibility in the name of the method. – lance Jun 5 at 18:18
Thanks Yann. The input is more than likely going to be a date format it can parse but as it is a user inputted field I could end up with all sorts which is why I am just going to return it as-is if all attempts to parse it fail. – Ian Roke Jun 5 at 18:26
show 1 more comment
vote up 2 vote down

I don't see what the purpose would be. Any more concise than that and it'd be difficult to read. That said, if you switched to DateTime.Parse you could just return that outright. Of course, then you would have to worry about the exception if it failed.

link|flag
vote up 2 vote down

You can't get away from the extra variable instantiation, but you can hide it with a helper method:

public static string DateTimeParseOrDefault(this object input, string format, string def) {
    DateTime output;
    return DateTime.TryParse(input.ToString(), out output)
        ? output.ToString(format)
        : def;
}

Which you then call in your function as:

public string FormatDate(object input) {
    return input.DateTimeParseOfDefault("dd-MMM", input.ToString());
}

You'll probably want to rename that goofy function name, or perhaps not use an extension method (just a regular static method) - but it's up to you at this point. Again all you're doing here is hiding the variable.

link|flag
vote up 0 vote down

Roll that logic into your tryParse method, so it returns the correct thing right away. Right now TryParse returns a boolean. Why can't it just return the final string value? Maybe you can create an overridden or overloaded version of it if you need to.

link|flag
It's not his TryParse method - it's the library's static TryParse method on the built-in DateTime type. – Erik Jun 5 at 18:14
@Erik - I think Mike was referring to me overriding the TryParse() method with my own version. That is possible... right? – Ian Roke Jun 5 at 18:43
Using the definition of 'overriding' - no, it's not possible - DateTime is Sealed, and so cannot be derived from. If you mean you'd like to write a different version of TryParse on some other object, then of course you're free to do so - but you'd have to duplicate all the logic that TryParse implements, and you'd have to call it in a different fashion than you are. – Erik Jun 5 at 18:48
vote up 4 vote down

Since the DateTime.TryParse() function requires the output variable, I don't see a way to get around creating the output variable there...

You could use the Parse() function instead with a try, catch... I'm not a big fan of this in general and try to avoid this type of stuff...

    try
    {
        this.label1.Text = DateTime.Parse(this.textBox1.Text).ToString("dd-MMM");
    }
    catch (FormatException)
    {
        this.label1.Text = this.textBox1.Text;
    }

EDIT
Erik had a good point, in catching the specific exception. It was a code sample which is why I left it at Exception. Use FormatException if you use this...

link|flag
Eek - bad! At least catch the proper exception - this thing will catch Threading exceptions, Out of memory exceptions, etc etc... – Erik Jun 5 at 18:15
@Erik - Read my comment directly above the code sample... And then realize its only a sample! – RSolberg Jun 5 at 18:16
I realize it's a sample - but it's worth saying nonetheless. – Erik Jun 5 at 18:17
@Erik - Does that look better :) – RSolberg Jun 5 at 18:18
Expection handling :-) – Bryan Watts Jun 5 at 18:23
show 3 more comments
vote up 0 vote down

I don't think there is.

remember the TryParse is communicating 2 results (1.did the parse succeed and 2. the datetime value if it did), but has only one return value.

Using Parse would make you deal with the exception. You can save the input.ToString, it's already a string.

link|flag
vote up 2 vote down

You are referencing output in two places. How could it not be a variable?

I'd be more worried about the exceptions which will happen when someone passes a null value for input.

Also, since your method explicitly works with string only, you should communicate that in your API by accepting a string instead of an object. Let the caller of the method determine how they would like to supply the string instance.

link|flag
vote up 2 vote down

First, I see a problem with the method name. It is called 'FormatDate(...)' I would expect the parameter to be a DateTime field. Taking in an object type makes the method harder to understand. With out knowing the code/implementation I wouldn't know what I would get back if I sent it an ArrayList object or a Person object. There isn't a logical answer. I think rewritting the method to Format a Date and only taking in a DateTime object makes the method clear and eliminates all of the variables.

public string FormatDate(DateTime date) 
{    
    return date.ToString("dd-MMM")
}

Look into "Working Classes" in Code Complete 2 by Steve McConnell. He discusses this with Chaper 6 I belive.

link|flag
I would agree however I am passing a date value from the GridView which is normally a string but I am sending the reference to the cell too so I can return the formatted date as a string. – Ian Roke Jun 5 at 18:35
2  
+1 for the best read of the very first line of Ian's function (the signature). – azheglov Jun 5 at 18:40
Ok, thinking of Single Responsibility Pricipal (SRP) you wouldn't want a function that converted a GridView's Cell value and then formatting it. You might try to create a function that called FindDateTime(...) then pass that value into the function FormatDate(...) – sgmeyer Jun 5 at 20:31

Your Answer

Get an OpenID
or

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