Category: C#

How to Enable or Disable the Large Tiles Support in your Windows Phone App?

The Windows Phone 8 SDK allows the developers to support 3 different sizes of Tiles in your Windows Phone app. These include small, medium and large. When developing an App, by default the TemplateFlip is selected and the default images are included in the project for the small and medium tiles. You can modify it to include your own images for the tiles. How to…

How to use array Rank in C# ?

In C# , the Rank property of the array is is used to get the rank of the array. In simple terms , rank refers to the number of dimensions of the array. How to use array Rank in C# ? You can get the number of dimensions of the array using the Rank property of the array. For instance , the Rank property of…