Leggere i file Resx







' Create a ResXResourceReader for the file items.resx.

Dim rsxr As ResXResourceReader
rsxr = New ResXResourceReader("C:\Prova\en-AU.resx")

' Create an IDictionaryEnumerator to iterate through the resources.

Dim id As IDictionaryEnumerator = rsxr.GetEnumerator()

' Iterate through the resources and display the contents to the console.

Dim d As DictionaryEntry
For Each d In rsxr
Debug.Print(d.Key.ToString() + ":" + ControlChars.Tab + d.Value.ToString())
Next d

'Close the reader.

rsxr.Close()













( leggereifileresx.html )- by Paolo Puglisi - Modifica del 17/12/2023