LINQ 运算符“==”不能应用于“char”和“string”类型的操作数

问题描述 投票:0回答:3

我过去几乎没有使用过 LINQ。今天,当我尝试使用 LinqPad 编写一个小 LINQ 查询时,出现以下错误:

Operator '==' cannot be applied to operands of type 'char' and 'string'

这是我试图写的脚本:

void Main()
{
            var csvlines = File.ReadAllLines(@"M:\smdr(backup08-06-2015).csv");
            var csvLinesData = csvlines.Skip(1).Select(l => l.Split(',').ToArray());
            var csvData = csvLinesData.Where(l => (!l[12].Contains("VM") && l[12] != "Voice Mail")).ToArray();
            var user = (from r in csvData
                        orderby r[12]
                        select new User
                        {
                            CSRName = r[12],

                            Incomming = (from r1 in r
                                         where r1[4] == "I"
                                         select r1).Count(),
                            outgoing = (from r1 in r
                                        where r1[4] == "O"
                                        select r1).Count()



                        }).ToList();
                        user.Dump();
}

class User
{
    public string CSRName;
    public int Outgoing;
    public int Incomming;
    public int calltransfer;
}

编辑1

根据建议我编辑了代码

                    select new User 
                    {
                        CSRName=r[12],
                        Incomming=(from r1 in r
                                  where r1[4]=='I'
                                  select r1).Count(),
                        outgoing = (from r1 in r
                                    where r1[4] == 'O'
                                    select r1).Count()

                    }).ToList();

现在可以编译了,但它抛出了一个不同的错误:

IndexOutOfRangeException: Index was outside the bounds of the array.

我哪里出错了?

c# linq linqpad
3个回答
7
投票

您正在比较字符串和字符类型

更换

where r1[4] == "I"
/
where r1[4] == "O"

where r1[4] == 'I'
/
where r1[4] == 'O'


2
投票

使用单引号引用'char':

Incomming = (from r1 in r
    where r1[4] == 'I'
    select r1).Count(),
    outgoing = (from r1 in r
        where r1[4] == 'O'
        select r1).Count()

0
投票

我看到第一个错误已经解决(使用

'
引号而不是
"
来括住字符)。

关于您的第二个错误(问题中的“编辑1”):从您的代码中我假设

r1
是一个字符数组。

您正在读取逗号分隔的文本文件(“*.CSV 文件”):

var csvlines = File.ReadAllLines(@"M:\smdr(backup08-06-2015).csv");

虽然各列以逗号分隔,但此格式并不强制每行具有相同的列数。如果您使用 CR+LF 终止该行,则新行开始。

但在您提供的源代码中,您假设

r1
文件中的每一行 (
*.CSV
) 需要包含 5 个字符,但情况并非总是如此。

因此,在这些情况下,字符数组

r1
的维度更短,你会得到

IndexOutOfRangeException: Index was outside the bounds of the array.

如果您尝试访问

r1[4]

为了说明这一点,我给出了

示例:

char[] r = { 'a', 'b', 'c', 'd' };
Console.WriteLine(r[2]); // succeeds
Console.WriteLine(r[3]); // succeeds
Console.WriteLine(r[4]); // fails: allowed index range is 0..3

使用

r.Length
获取数组的长度:示例中为 4,索引从 0 开始,因此允许的范围为 0..3.

相应地更改您的代码,例如:

where (r1!=null && r1.Length>=5) && (r1[4] == 'O')

确保它不会超出数组的范围。您可以在 LinqPad 中轻松测试(或将下面的代码放入控制台应用程序的 Main 函数中进行测试,DotNetFiddle 也可以很好地运行它):

using System;
using System.Collections.Generic;
using System.Linq;

public class Program
{
    public static void Main()
    {
            var r = new List<char[]> { new char[]{ 'a', 'b', 'c', 'd' }, 
                new char[]{ 'a', 'b', 'c', 'd', 'O' } };

            Console.WriteLine((from r1 in r
            where (r1!=null && r1.Length>=5) && r1[4] == 'O'
            select r1).Count());
    }

}

如果删除表达式

(r1!=null && r1.Length>=5)
,则会出现您提到的错误。

© www.soinside.com 2019 - 2024. All rights reserved.