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.
我正忙着创建一些图表以继续我的 silverlight 应用程序,并且只想知道 .Series[0] 在以下代码中代表什么
PieSeries pieSeries = ((PieSeries)chart.Series[0]);
您是否检查了您正在使用的控件的文档?你到底有什么问题?
Sec,.Series[0]表示访问Series属性,它是数组或列表类型或索引器,您要在其中访问第一个(从零开始的)元素(0)。
.Series[0]
Series