質問

さて、インデクサーを使用してデータセット内のデータ行のフィールドにアクセスしていますが、これを単なる構文機能と考えてみましょう。これまでに行って、ゲッターとセッターに還元されるアヒルとタイプしたもの、つまりデータ転送オブジェクトと呼びますか?

役に立ちましたか?

解決

Yes, it is. In fact, there's syntax in VB that makes it even more obvious. You can write:

Dim row As DataRow
row!Name = "Foo"     'same as row("Name")

他のヒント

It can be.

A dictionary of strings can be one too.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top