我需要2个单独的列表和一个包含这两个列表的项目的列表.
List<int> list1 = new List<int>(); List<int> list2 = new List<int>(); List<int> list3 = list1 & list2
当我在list1中添加一些整数时,我希望它们也出现在list3中.将新项添加到list2时,我想要相同的行为.
多个列表的引用.
这可能吗?
c# reference list
c# ×1
list ×1
reference ×1