Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kermalis committed Sep 11, 2020
1 parent f8dd3cf commit fc8b346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ using (var reader = new EndianBinaryReader(stream, endianness: Endianness.Little
obj.Bool32 = reader.ReadBoolean(); // Reads a 'bool' (4 bytes in this case, since the reader was initiated with a default of BooleanSize.U32, but there is an overload to pass in one)
obj.NullTerminatedASCIIString = reader.ReadStringNullTerminated(EncodingType.ASCII); // Reads ASCII chars until a '\0' is read, then returns a 'string'
obj.UTF16String = reader.ReadString(10, EncodingType.UTF16); // Reads 10 UTF16 chars as a 'string'
obj.UTF16String = reader.ReadString(10, true, EncodingType.UTF16); // Reads 10 UTF16 chars as a 'string' with the '\0's removed
}
```
### Reading Automatically (With Reflection):
Expand Down
2 changes: 1 addition & 1 deletion Source/EndianBinaryIO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageId>EndianBinaryIO</PackageId>
<Product>EndianBinaryIO</Product>
<AssemblyName>EndianBinaryIO</AssemblyName>
<Version>1.0.3.0</Version>
<Version>1.1.0.0</Version>
<RepositoryUrl>https://github.com/Kermalis/EndianBinaryIO</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NoWarn />
Expand Down

0 comments on commit fc8b346

Please sign in to comment.