Testing Day (Loops)...
16 years ago
Just another developer Blog on the internet.... Talking to myself... Nobody listens...
// string[] -> ArrayList
string[] msg = this.message.Split('\n');
ArrayList arrayList = new ArrayList();
arrayList.AddRange(msg);
// ArrayList -> string[]
string[] arrayStrings = arrayList.ToArray(typeof(string)) as string[];
[PasswordPropertyTextAttribute(true)]
public string Password { get; set; }