In C#: Why no 'Item' on System.Data.DataRow?
Asked Answered
N

2

11

I'm rewriting/converting some VB-Code:

Dim dt As New System.Data.DataTable()
Dim dr As System.Data.DataRow = dt.NewRow()
Dim item = dr.Item("myItem")

C#:

System.Data.DataTable dt = new System.Data.DataTable();
System.Data.DataRow dr = dt.NewRow();
var item = dr.Item["myItem"];

I can't make it run under C#, the problems I have is the third row var item = dr.Item["myItem"];:

System.Data.DataRow' does not contain a definition for 'Item' and no extension method 'Item' accepting a first argument of type 'System.Data.DataRow' could be found (are you missing a using directive or an assembly reference?)

I referenced System.Data Version 4 in both projects. What am I missing here? Note: ItemArray exists in both...

Nadda answered 24/10, 2011 at 10:3 Comment(0)
I
23

Try like this:

var item = dr["myItem"];

In C# you can access the indexer property directly. And the DataRow.Item property is defined as indexer.

Incandesce answered 24/10, 2011 at 10:5 Comment(4)
Ah, this does the trick - I just wonder why there is a different behaviour/syntax/style compared to VB...Nadda
@Nadda - if there weren't any differences in syntax/style/behaviour between C# and VB, they wouldn't be 2 different languages...Sheepwalk
@Damien_The_Unbeliever: Well, in VB you have the 'peace' of using both, means you also can write dr("myItem") - funny that C# denies the access to the item-property...Nadda
@sl3dg3, the "peace" of writing both forms, but the "pure evil" of having () as index-selector operators. ;)Meir
A
4

There is actually no "Item" property in C#. In VB the DataRow cell access is defined like this:

Default Public Property Item (
    column As DataColumn
) As Object

So there is a literal "Item" property. However, in C# it is defined like this:

public object this[
    DataColumn column
] { get; set; }

So this is the default property of the class / object. So you access it with the object name.

Acetous answered 24/10, 2017 at 22:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.