tutorials, tips and tricks to design a Windows Phone,Windows Store ,UWP,XAML ,.Net Application , Micrsoft Interview Question
Monday, June 20, 2011
How many web.config files for sngle application?
Configuration File Dotnet
Monday, June 13, 2011
Collection -2D Array
Wednesday, June 8, 2011
Collection - Array
Tuesday, May 3, 2011
How to use C# string Format
string Format method replace the argument Object into a text equivalent System.String.
Replace string Particular index for ex System.String.Format("Hi welcome Mr {0}","Sutahahr")
System.String.format(string format,Object arg0)
Parameters:
String format : The format String
The format String Syntax is like {indexNumber:formatCharacter}
Object arg0 : The object to be formatted.
Returns:
String : The formatted String
Examples :
Currency :
String.Format("{0:c}", 10) will return $10.00
The currency symbol ($) displayed depends on the global locale settings.
Date :
String.Format("Today's date is {0:D}", DateTime.Now)
You will get Today's date like : 01 January 2005
Time :
String.Format("The current time is {0:T}", DateTime.Now)
You will get Current Time Like : 10:10:12
--
J.SuThahar MCA
MicroSoft Technology Specialist
Microsoft Certified ProfessionalDeveloper
www.jsuthahar.tk
09943151415
Tuesday, April 19, 2011
Debug Program avoid Attach Process-c#.net Tips
--
J.SuThahar MCA
MicroSoft Technology Specialist
Microsoft Certified ProfessionalDeveloper
www.jsuthahar.tk
09943151415
Tuesday, February 22, 2011
Types of JIT Compilers
Types Of JIT Compilers are as stated below :
(1) PRE JIT
(2) ECONO JIT
(3) NORMALE JIT
(1) PRE JIT : It Compiles complete source code to native caode In a single Compilation.
(2) ECONO JIT : It compiles only those methods that are called at Runtime.
(3) NORMALE JIT : It compiles only those methods that are called at Runtime and are stored in cache.When these methods called again they retrieve from cache.
Default JIt is PRE Jit .