R
Rory Becker
I need to generate an XElement with an indeterminate number of attributes
whose names and values will have previously have been added to a dictionary(Of
String, String)
-------------------------------------------------------------
Private Attributes As New Dictionary(Of String, String)
Public Overrides Function GenerateXElement() As XElement
Return <DocElement>
<InnerElement <%= From Attribute In Attributes Select
SomethingHereIGuess %> />
</DocElement>
End Function
whose names and values will have previously have been added to a dictionary(Of
String, String)
-------------------------------------------------------------
Private Attributes As New Dictionary(Of String, String)
Public Overrides Function GenerateXElement() As XElement
Return <DocElement>
<InnerElement <%= From Attribute In Attributes Select
SomethingHereIGuess %> />
</DocElement>
End Function