0

我一直在尝试将List<string>财产转换为List<ulong>财产。似乎无论我做什么,它总是无法获取或设置数据。

public List<string> _DocumentIds { get; set; } = new List<string>();

我试图转换List<string>为的东西List<ulong>

使用 ConvertAll

public List<ulong> DocumentIds 
{ 
  get => _DocumentIds.ConvertAll(x => UInt64.Parse(x)); 
  set => _DocumentIds = value.ConvertAll(x => $"{x}"); 
}

使用演员表

public List<ulong> DocumentIds 
{ 
   get => _DocumentIds.Cast<ulong>().ToList(); 
   set => _DocumentIds = value.Cast<string>().ToList(); 
}

使用选择

public List<ulong> DocumentIds
{
   get => _DocumentIds.Select(x => UInt64.Parse(x)).ToList();
   set => _ = value.Select(x => $"{x}").ToList();
}

我不引以为豪的东西

public List<ulong> DocumentIds
{
   get
   {
      var Values = new List<ulong>();
      foreach (var Value in _DocumentIds) Values.Add(UInt64.Parse(Value));
      return Values;
   }
   set => _DocumentIds = value.Cast<string>().ToList();
}

我在 get set 语句上使用了断点,它总是命中两次,但从未命中 set。

4

0 回答 0