Thursday, May 28, 2015

Android - An Introduction

 Android is best world's popular operating system for android mobile devices and tablets. Its open source operating system.This is created by GOOGLE, and available to all kinds of developers with various expertise levels, ranging from rookie to professional.

 Android is released in versions numbers. Google has also assigned  to its versions since April 2009. Following is the detail of versions.

Version No.       Name                                   For:
1.0Android BetaPhone
1.1AndroidPhone
1.5CupcakePhone
1.6DonutPhone
2.0/2.1EclairPhone
2.2.xFroyoPhone
2.3.xGingerbreadPhone
3.xHoneycombTablet
4.0.xIce Cream SandwichPhone and Tablet
4.1/4.2Jelly BeanPhone and Tablet                                 

 I will send you further details in next post.

 

 

Remove blank values from array in C#


Test = test.Where(x => !string.IsNullOrEmpty(x)).ToArray();

var temp_n = new List<string>();
foreach (var s in test)
{
if (!string.IsNullOrEmpty(s))
temp_n.Add(s);
}
Test = temp_n.ToArray();
Remove duplicate entry in listbox in C# 
 
 
 
List<string> List_new = new List<string>();
foreach (string s in originalList)
{
if (!List_new.Contains(s))
{
List_new.Add(s);
}
}
// Optionally...
originalList
= List_new;