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.

How do I get only day+month+year in C#?

share|improve this question
2  
I need only the question. Putting a ? mark at the end of a statement does not a question make. – JohnFx Feb 28 '11 at 23:16

closed as not a real question by JohnFx, Jesse C. Slicer, Dan J, Hans Passant, Richard Mar 1 '11 at 7:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Vague question.

Do you need this as a string?

DateTime.Now.ToString("MM/dd/yyyy")

There are also Day, Month, Year values you can work with on the DateTime struct.

share|improve this answer

Everything you need is right here: http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx

share|improve this answer

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