The code of FileStream.Name looks like this;
Public Property Get Name() As String
If Len(Name) = 0 Then
Name = "Unknown Stream Name"
Else
Name = mName
End If
End Property
I'm sure that the If-Statement should look like this:
If Len(mName) = 0 Then
^
otherwise FileStream.Name will always return "Unknown Stream Name".
With this release, a few minor bugs have been fixed.
- Wide Character API support on NT machines, and, UNC file path support.
- EmptyGuid was added to the GuidStatic class.
VBCorLib has been updated to version 2.0.205. This version has two minor fixes.
- Fixed ResourceReader to handle zero length resources
- Fixed Environment.ParseCommandLineArgs to handle backslashes better.