public static string IntArrayToCommaString(int[] intArray)
{
string s = "";
foreach (int i in intArray)
{
s += intArray[i].ToString() + ",";
}
return s.TrimEnd(',');
}
Sunday, October 3, 2010
IntArrayToCommaString Function
Sunday, October 03, 2010 Posted by Vikas SharmaLabels: Asp.net Utility Functions
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment