AW: [CSharp.net] DataTable.Row - Extend

Mansur Esmann [OM] csharp.net at glengamoi.com
Tue, 11 May 2004 16:38:50 +0200


Also jetzt habe ich eine Hilfe bekommen, aber die ist leider nur in VB.NET ....

Ich kenne die Schreibweise aber leider so gar net :-(

Kann mir das mal jemand in c# intepretieren?

    Public Class MyPointMapShape : Inherits PointMapShape
        Sub New(ByVal PointShape As PointShape, ByVal PointSymbol As PointSymbol)	' Was soll denn
dieses "New"???
            MyBase.New(PointShape, PointSymbol)	'Und was ist MyBase? this.... vielleicht?
        End Sub

        Dim mTag As String = ""
        Public Property Tag() As String
            Get
                Return mTag
            End Get
            Set(ByVal Value As String)
                mTag = Value
            End Set
        End Property
    End Class

End Class


Gruß Mansur