You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ Collection of .NET libraries like utilities and controls that target .NET Standa
74
74
*[`AppSettingsConnector`](https://github.com/BionicCode/BionicCode.Net#AppSettingsConnector) - A default API to the `AppSettings` that provides strongly typed reading and writing (e.g. `bool`, `int`, `double`, `string`) of key-value pair values
75
75
*[`MruManager`](https://github.com/BionicCode/BionicCode.Net#mru-most-recently-used-file-manager) - Most Recently Used (MRU) file manager. An API that maintains an MRU table stored in the Application Settings file.
76
76
*[`EventAggregator`](https://github.com/BionicCode/BionicCode.Net#eventaggregator) - Implementation of the Event Aggregator pattern that supports dynamic aggregation of different typed event sources
77
-
*`AutoResetStream` - A `Stream` decorator that automatically resets the stream's position after read/write access.
77
+
*[`AutoResetStream`](https://github.com/BionicCode/BionicCode.Net#autoresetstream) - A `Stream` decorator that automatically resets the stream's position after read/write access.
78
78
* Easy to use [`Dialog` attached behavior](https://github.com/BionicCode/BionicCode.Net#mvvm-dialog-attached-behavior) and infrastructure to allow MVVM friendly dialog handling from the view models in a fire-and-forget manner. To display dialogs implement `IDialogViewModel` classes and create a `DataTemplate` for each implementation. The `DataTemplate` is the rendered in a native `Window`. Addition attached properties allow for styling of the dialog `Window` or to assign an optional `DataTemplateSelector`. The attached behavior will handle showing and closing of the dialog.
79
79
80
80
### `BaseViewModel`
@@ -904,18 +904,18 @@ A `Stream` decorator that resets the stream's position after red(write access
904
904
#### Example
905
905
906
906
```C#
907
-
using (varfileStream=newFileStream("C:/Temp", FileMode.CreateNew))
907
+
using (varfileStream=newFileStream("C:\Temp", FileMode.CreateNew))
908
908
{
909
909
boolleaveFileStreamOpen=true;
910
910
911
911
using (varautoResetStream=newAutoResetStream(fileStream, leaveFileStreamOpen))
0 commit comments