March 2013

Difference Between Int32.Parse(), Convert.ToInt32(), and Int32.TryParse()

Int32.parse(string) Int32.Parse (string s),%method converts the,%string,%representation of a number to its 32-bit signed integer equivalent. When %s,%is a,%null,%reference, it will throw,%ArgumentNullException. If,%s,%is other than,%integervalue, it will throw,%FormatException. When %s,%represents a number less than,%MinValue,%or greater thanMaxValue, it will throw,%OverflowException. For example: string s1 = \”1234\”; string s2 = \”1234.65\”; string s3 = null; string s4 = …

Difference Between Int32.Parse(), Convert.ToInt32(), and Int32.TryParse() Read More »

Introduction to Windows Presentation Foundation

The Windows Presentation Foundation is Microsofts next generation UI framework to create applications with rich user experience. It is part of the .NET framework 3.0 and higher. WPF combines application UIs, 2D graphics, 3D graphics, documents and multimedia into one single framework. Its vector based rendering engine uses the hardware acceleration of modern graphics cards. …

Introduction to Windows Presentation Foundation Read More »

Gang of Four (GoF) Design Patterns

The Gang of Four (GoF) patterns are generally considered the foundation for all other patterns. They are categorized in three groups: Creational, Structural, and Behavioral. Here you will find information on these important patterns. Creational Patterns Abstract Factory: Creates an instance of several families of classes Builder: Separates object construction from its representation Factory: Method …

Gang of Four (GoF) Design Patterns Read More »

Scroll to Top