GetPropertyList メソッド (TestObject)

クラス

TestObject.

処理

指定したオブジェクトに対して取得できるプロパティ名のリストを返します。

構文

C#
propertyList = testObject.GetPropertyList()
VB
propertyList = testObject.GetPropertyList()
変数 説明
propertyList List(Of String)

C#

List<string> propertyList = testObject.GetPropertyList();

VB

Dim propertyList As List(Of String)
propertyList = testObject.GetPropertyList()