PropertyCollection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示可以添加到 DataColumn、DataSet 或 DataTable 的属性集合。
public ref class PropertyCollection : System::Collections::Hashtable
public ref class PropertyCollection : System::Collections::Hashtable, ICloneable
public class PropertyCollection : System.Collections.Hashtable
public class PropertyCollection : System.Collections.Hashtable, ICloneable
[System.Serializable]
public class PropertyCollection : System.Collections.Hashtable
type PropertyCollection = class
inherit Hashtable
interface ICloneable
type PropertyCollection = class
inherit Hashtable
[<System.Serializable>]
type PropertyCollection = class
inherit Hashtable
Public Class PropertyCollection
Inherits Hashtable
Public Class PropertyCollection
Inherits Hashtable
Implements ICloneable
- 继承
- 属性
- 实现
示例
以下示例为 DataTable 创建时间戳值并将其添加到 。PropertyCollection
private void AddTimeStamp()
{
//Create a new DataTable.
DataTable table = new DataTable("NewTable");
//Get its PropertyCollection.
PropertyCollection properties = table.ExtendedProperties;
//Add a timestamp value to the PropertyCollection.
properties.Add("TimeStamp", DateTime.Now);
// Print the timestamp.
Console.WriteLine(properties["TimeStamp"]);
}
Private Sub AddTimeStamp()
'Create a new DataTable.
Dim table As New DataTable("NewTable")
'Get its PropertyCollection.
Dim properties As PropertyCollection = table.ExtendedProperties
'Add a timestamp value to the PropertyCollection.
properties.Add("TimeStamp", DateTime.Now)
'Print the timestamp.
Console.WriteLine(properties("TimeStamp"))
End Sub
注解
PropertyCollection可以通过 、 DataSet或 DataTable 类的 DataColumn属性访问 ExtendedProperties
。
通过 PropertyCollection向 、 DataSet或 DataTable 对象添加自定义属性DataColumn。 例如,你可能想要存储对象的创建时间,以便以后与另一个对象进行比较。
构造函数
PropertyCollection() |
初始化 PropertyCollection 类的新实例。 |
PropertyCollection(SerializationInfo, StreamingContext) |
已过时.
初始化 PropertyCollection 类的新实例。 |
属性
comparer |
已过时.
已过时.
获取或设置要用于 IComparer 的 Hashtable。 (继承自 Hashtable) |
Count |
获取包含在 Hashtable 中的键/值对的数目。 (继承自 Hashtable) |
EqualityComparer |
获取要用于 IEqualityComparer 的 Hashtable。 (继承自 Hashtable) |
hcp |
已过时.
已过时.
获取或设置可分配哈希代码的对象。 (继承自 Hashtable) |
IsFixedSize |
获取一个值,该值指示 Hashtable 是否具有固定大小。 (继承自 Hashtable) |
IsReadOnly |
获取一个值,该值指示 Hashtable 是否为只读。 (继承自 Hashtable) |
IsSynchronized |
获取一个值,该值指示是否同步对 Hashtable 的访问(线程安全)。 (继承自 Hashtable) |
Item[Object] |
获取或设置与指定的键关联的值。 (继承自 Hashtable) |
Keys |
获取包含 ICollection 中的键的 Hashtable。 (继承自 Hashtable) |
SyncRoot |
获取可用于同步对 Hashtable 的访问的对象。 (继承自 Hashtable) |
Values |
获取一个 ICollection,它包含 Hashtable 中的值。 (继承自 Hashtable) |
方法
显式接口实现
IEnumerable.GetEnumerator() |
返回循环访问集合的枚举数。 (继承自 Hashtable) |
扩展方法
Cast<TResult>(IEnumerable) |
将 IEnumerable 的元素强制转换为指定的类型。 |
OfType<TResult>(IEnumerable) |
根据指定类型筛选 IEnumerable 的元素。 |
AsParallel(IEnumerable) |
启用查询的并行化。 |
AsQueryable(IEnumerable) |
将 IEnumerable 转换为 IQueryable。 |