I have below array of type object
object[] myarray = new object[] { "1", "Success"};
I want to insert string value at first position in myarray is there any method to do this result should be like below:
I want array like below
object[] myarray = new object[] { "logFile","1", "Success"};