string[] test = new string[]{"Hello Mr. "+get_name(),Random.Next(10)+" is your lucky number"}; string[] names = {"Jim","Bob","Alice"}; string get_name() { int t; t ...
The Bit Array class represent compact bit of values mainly represented with 1 or 0 or you can say true or false. It is used when you want to store bits but don't know the size in advance. You can ...