DemoObject.EchoCapsArr C# (CSharp) Method

EchoCapsArr() public method

public EchoCapsArr ( string texts ) : string[]
texts string
return string[]
	public string[] EchoCapsArr (string[] texts)
	{
		string[] retTexts = new string[texts.Length];

		for (int i = 0 ; i != texts.Length ; i++)
			retTexts[i] = texts[i].ToUpper ();

		return retTexts;
	}