Posted on: 10/6/2014 11:09:44 AM | Views : 324

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 ...