无法将我的类的实例添加到列表中

问题描述 投票:1回答:2

我有一个Powershell脚本声明一个类,然后尝试将此类的实例添加到列表中:

Add-Type -TypeDefinition @"
using System.Text.RegularExpressions;
public class BuildWarning
{
    public string Solution { get; private set; }
    public string Project { get; private set; }
    public string WarningMessage { get; private set; }
    public string WarningCode { get; private set; }
    public string Key { get; private set; }
    public bool IsNew { get; set; }
    private static readonly Regex warningMessageKeyRegex = new Regex(@"^(?<before>.*)\([0-9,]+\)(?<after>: warning .*)$");
    public BuildWarning(string solution, string project, string warningMessage, string warningCode)
    {
        Solution = solution;
        Project = project;
        WarningMessage = warningMessage;
        WarningCode = warningCode;
        var match = warningMessageKeyRegex.Match(WarningMessage);
        Key = Solution + "|" + Project + "|" + match.Groups["before"].Value + match.Groups["after"].Value;
    }
}
"@

[System.Collections.Generic.List``1[BuildWarning]] $warnings = New-Object "System.Collections.Generic.List``1[BuildWarning]"

[BuildWarning] $newWarning = New-Object BuildWarning("", "", "", "")

$warnings += $newWarning

在最后一行,我收到一个错误:

Cannot convert the "System.Object[]" value of type "System.Object[]" to type
"BuildWarning".
At C:\development\temp\BuildWarningReportGenerator.ps1:93 char:17
+                 $warnings += $newWarning
+                 ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [], RuntimeException
    + FullyQualifiedErrorId : ConvertToFinalInvalidCastException

我无法弄清楚问题是什么。类型检查显示$warnings$newWarning的类型都是正确的。如何解决这个错误?

powershell powershell-v5.0
2个回答
2
投票

jyao's helpful answer提供有效的解决方案:

为了将元素附加到[System.Collections.Generic.List`1[BuildWarning]]实例,请使用其.Add()方法,而不是PowerShell的+=运算符。

PowerShell的+=操作符通常做的是将集合值LHS视为一个数组 - 不管特定的LHS集合类型 - 并“追加”到该数组,即它创建一个包含LHS集合的所有元素的(新)数组其次是RHS元素。

换句话说:使用+=忽略特定的LHS集合类型,并且总是分配包含LHS集合元素和RHS元素的(新)[object[]]数组。

这种行为可能会令人惊讶,因为期望保留LHS的特定集合类型是合理的 - 请参阅this discussion on GitHub

在您的特定情况下,您在Windows PowerShell中看到了v5.1中的错误,该错误已在PowerShell Core中修复:

如果您尝试在您的情况下键入约束列表变量$warnings,则会出现问题。类型约束意味着在LHS变量名称之前放置一个类型(强制转换),它将变量的类型锁定在其中,以便后续赋值必须是相同或兼容的类型。

举一个简单的例子:

$list = New-Object 'System.Collections.Generic.List[int]'
$list += 1  # OK - $list is not type-constrained
Write-Verbose -Verbose "Unconstrained `$list 'extended': $list"


# Type-constrained $list
[System.Collections.Generic.List[int]] $list = New-Object 'System.Collections.Generic.List[int]'
$list += 1  # !! BREAKS, due to the bug
Write-Verbose -Verbose "Type-constrained `$list 'extended': $list"

我鼓励你在Windows PowerShell UserVoice forum报告这个错误。


5
投票

这样怎么样?

#do not use this way
#$warnings += $newWarning

#but use this instead
$warnings.Add($newWarning)
© www.soinside.com 2019 - 2024. All rights reserved.