Iam trying to create a resx file. The file is created, but with strange carácter.
my code to create the file is:
Public Sub GenerateResourceFile(ByVal filePath As String)
Dim fs As New FileStream(filePath, FileMode.OpenOrCreate, FileAccess.Write)
Dim w As ResourceWriter = New ResourceWriter("c:\test.resources ")
w.AddResource("Title", "Test")
w.Generate()
w.Close()
w.Dispose()
fs.Close()
End Sub
Someone can help me ??
Go to the complete details ...