我正在使用xhr和net来调用Kegg API。我可以控制台响应,而responseText正是我想要的-但是,当我尝试返回文本时,将文本分配为全局变量,或者在我从函数返回响应后将其指定为想要的文本,返回的结果不确定。我的代码在下面,在正确方向上的任何帮助将不胜感激!
foreach (string i in database)
{
// compares query (from index 0 to length of) to all strings in database
if (i.StartsWith(query))
{
// add to list above based on query
dbQueryList.Add(i);
Console.WriteLine(i);
}
// if statement truncates dbQueryList to 5 results
if (dbQueryList.Capacity >= 5)
break;
}
return dbQueryList;