这是我的代码,我使用的是2维数组。
top = 0;
if(rowcol[i-1][j]){ top = rowcol[i-1][j] }
但它显示了这个错误:
无法将类型'string'隐式转换为'bool'
完整代码:
string[] fileData = File.ReadAllLines(@"C:\Users\apr13mpsip\Desktop\OneOrganizer\OneOrganizer\WordPuzzle\testing.txt");
string[] lineValues;
int row = 0;
int col;
string[][] rowcol = new string[fileData.Length][];
foreach (string line in fileData)
{
lineValues = line.Split(new string[] { "," }, StringSplitOptions.None);
rowcol[row] = new string[lineValues.Length];
col = 0;
foreach (string value in lineValues)
{
rowcol[row][col] = value;
col++;
}
row++;
}
for (int i = 0; i < rowcol.GetLength(0) ; i++)
{
for (int j = 0; j < rowcol[i].GetLength(0) ; j++)
{
int iadd = i+1 <rowcol.GetLength(0) ? i + 1: 0;
int iminus = i-1> 0 ? i - 1 : 0;
int jadd = j+1 <rowcol.GetLength(0) ? j + 1 : 0;
int jminus = j-1 > 0 ? j - 1 : 0;
var self = rowcol[i][j]; // current value
top = 0;
if(rowcol[iminus][j]){ top = rowcol[iminus][j] } // ERROR HERE
}
}
我实际上是从文本文件中读取并通过在锯齿状数组中创建行和列10x10来创建一些东西。所以我可以通过rowcol [] []找到它们的价值。
答案 0 :(得分:3)
,因为
if(rowcol[i-1][j])
将根据您的定义
返回字符串string[][] rowcol
和 if语句需要bool 。你需要检查它与
之类的东西if(rowcol[i-1][j] == "stringtotest")
答案 1 :(得分:2)
只有布尔表达式可以用作if
条件,例如:
if (!string.IsNullOrEmpty(rowcol[i-1][j]))