converting vb to c# , what will be the best equivalent in c# of this
<ConfigurationProperty("name", IsKey:=True, IsRequired:=True)> _
Public Property Name() As String
Get
Return DirectCast(MyBase.Item("name"), String)
End Get
Set(ByVal value As String)
MyBase.Item("name") = value
End Set
End Property
See Question&Answers more detail:os