UserTrackPointCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 UserTrackPointCollection 类的新实例。
重载
| 名称 | 说明 |
|---|---|
| UserTrackPointCollection() |
初始化 UserTrackPointCollection 类的新实例。 |
| UserTrackPointCollection(IEnumerable<UserTrackPoint>) |
使用用户跟踪点列表初始化类的新实例 UserTrackPointCollection 。 |
UserTrackPointCollection()
初始化 UserTrackPointCollection 类的新实例。
public:
UserTrackPointCollection();
public UserTrackPointCollection();
Public Sub New ()
注解
无参数构造函数将 UserTrackPointCollection 初始化为空列表。
适用于
UserTrackPointCollection(IEnumerable<UserTrackPoint>)
使用用户跟踪点列表初始化类的新实例 UserTrackPointCollection 。
public:
UserTrackPointCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::UserTrackPoint ^> ^ points);
public UserTrackPointCollection(System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.UserTrackPoint> points);
new System.Workflow.Runtime.Tracking.UserTrackPointCollection : seq<System.Workflow.Runtime.Tracking.UserTrackPoint> -> System.Workflow.Runtime.Tracking.UserTrackPointCollection
Public Sub New (points As IEnumerable(Of UserTrackPoint))
参数
- points
- IEnumerable<UserTrackPoint>
例外
points是空引用(Visual Basic 中的 Nothing)。
注解
初始化 UserTrackPointCollection 为包含 UserTrackPoint 指定 points对象。