Ankit Singh
Total Post:341
Points:2389
how to convert the character stored in arraylist to its corresponding ascii code
Total Post:341
Points:2389© Copyright © 2010 - 2018 MindStick Software Pvt. Ltd. All Rights Reserved
Post:135
Points:947Re: how to convert the character stored in arraylist?
you can use Asc('A') in vb.net and for c#, you can use Convert.ToInt32('A')
foreach(var item in ObjArrayList) { ResponseArray.Add(Convert.ToInt32(item)); }
Traverse through the array list & convert items. like
var ResponseArray = new ArrayList();