Category: C#

How to Programatically Create ApplicationBar in Windows Phone ?

Are you looking to create ApplicationBar programmatically at runtime in Windows Phone ? . Below is a sample code snippet that demonstrates how to create Application Bar in Windows Phone 8 . How to Programatically Create ApplicationBar in Windows Phone ? Call this function in the constructor of the page after the InitializeComponent method.

Comparing only Date in the DateTime datatype in C#

The DateTime datatype includes both the date as well as the time component to it in C#. By any chance , if you want to compare only the date part in the DateTime variable in C# , you can use the Date property defined in the DateTime class. How to compare only Date in the DateTime datatype in C# ?

C# Compiler Error – CS8925 the first operand of an overloaded shift

In this blog post, you’ll learn more about the C# Compiler Error – CS8925 and the related message description C# Compiler Error Code CS8925 C# Compiler Description for the Code :CS8925 The first operand of an overloaded shift operator must have the same type as the containing type or its type parameter constrained to it, and the type of the second operand must be int

How to generate C# classes from xsd file ?

You can easily generate the C# classes or entities from the xsd file using the VS Command Prompt. How to generate C# classes from xsd file ? Just launch the VS command prompt from the Windows 10 Start menu and run the following command xsd <Path of your.xsd file> /classes Eg : xsd “C:/test.xsd” /classes This would create the .cs files in the same folder…

What is the default modifier for the class in C#?

What is the default modifier for the class in C#? In C#, the default modifier for the class is internal. This is applicable of there is no modifier defined for the class. When the class is internal, then it is visible only within the current assembly.

Converting an Enum to Integer in C#

If you need to convert an enum to its numeric equivalent , you can simply cast the values to integer . Below is a sample code snippet that demonstrates how to do it. Converting an Enum to Integer in C#

How to Allow Null Values for Integer in C# ?

In order to allow null values to an integer or for any value types , we need to make the data type as Nullable<T> where T refers to type. How to Allow Null Values for Integer in C# ? There are 2 ways you can set null value to value types in C# .