C# Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 532 Page Views: 

What will be the result of the code Console.Write(String.Format(“{0:dd MMM yyyy}”, new DateTime(2009,12,23))?



Posted By: Avi Date: 15 October 2010 05:46:46 AM
 Answer:

“23 dec 2009”


Posted By: avibtech


Date: 15 October 2010 05:46:46 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image KFwdzc
Related Questions
C# : Catch Blocks are used to handle exceptions or errors. But what to do when an error occurs in the catch block?

Catch Blocks are used to handle exceptions or errors. But what to do when an error occurs in the cat....

To prevent or avoid errors in the catch block one can include a try and catch block in the catch blo....
Category: C# Date: 10/1/2010 11:44:31 AM
C# : What do you mean by satellite assembly?

What do you mean by satellite assembly?

When there is arequirement of localising the application i.e we want to mak the application customiz....
Category: C# Date: 10/1/2010 11:43:31 AM
C# : What are collection classes?

What are collection classes?

In >net there is a special framework which provide special classes for data storage and retrieval....
Category: C# Date: 10/1/2010 11:42:31 AM
C# : Which specific group can access a protected method?

Which specific group can access a protected method?

It can be accessed by the Classes within the same assembly and the Classes derived from the declarin....
Category: C# Date: 10/1/2010 11:41:31 AM
C# : Differentiate between structure and class in c#.

Differentiate between structure and class in c#.

1. Classes are refrence type and uses heap whereas Structure are value type and uses stacks for bei....
Category: C# Date: 10/1/2010 11:40:31 AM