Hi,
this exception makes no sense to me:
Cannot implicitly convert type 'object' to 'char[]'. An explicit conversion exists (are you missing a cast?)
as you can see charQuery is char array and not an object:
string searchedBand = this.txtsearchBand.Text;
char[] charQuery = searchedBand.ToCharArray();
String[] dbQuery = new String[(charQuery.Length)];
for (int i = 0; i < charQuery.Length; i++)
{
char[] option = charQuery.Clone();
option[i] = '*';
dbQuery[i] = option.ToString();
}
any reason what the problem is?
Thanks,
Mot.