Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几行。在列表中的行可以重叠。现在我想将这些行减去一行以获得一组新行。
换句话说,我需要split排队。
split
如何在 C# 中实现这一点
前任:
List<Line> lines = new List<Line>(); line = new Line(); SubtractLine (Line, Lines);
可以不使用吗
lines.remove (line);
I have a generic function that returns a List<?>. If it works correctly, it will return a List<LightSensor>, but I cannot directly convert the result of the function to a
List<?>
List<LightSensor>