字符串数组添加元素

str= "1,2,6" ;
string [] al= str.Split( ',' );
List< string > r =  new  List< string >(al);
r.Add( "3" );