怎么能把真放在匹配里.成功的c#

本文关键字:成功 怎么能 | 更新日期: 2023-09-27 18:02:21

我试着把真匹配。成功而不是工作

请帮帮我

using System;
using System.IO;
using System.Text.RegularExpressions;
class Program
{
    static void Main()
    {
        var match.Success=true;
        while (match.Success)
        {
            code
        }
    }
}

怎么能把真放在匹配里.成功的c#

这是不可能的,因为它是read-only属性。看到

不确定你在发布的代码中的上下文是什么,但看起来你正试图强制设置true并在while循环中使用它。在这种情况下,为什么不直接说

呢?
while (true)
{
    code
}