A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
In appears you are coding in C#. So consider the following:
namespace DM
{
class Armour
{
string[] strArray = new string[] { "Mahesh", "Mike", "Raj", "Praveen", "Dinesh" };
string test;
static string[] staticArray = new string[] { "Tom", "Dick", "Harry" };
string test2 = staticArray[0]; // initialize from static array
public string Test1()
{
test = strArray[0];
return test;
}