AppCmd + Advanced C# + View Log File (edit)
https://www.saotn.org/appcmd-introduction-examples/
https://www.codeproject.com/Articles/17023/System-File-Association
Fastest way to:
Read Text Files
https://cc.davelozinski.com/c-sharp/fastest-way-to-read-text-files
Read & Process Text Files
https://cc.davelozinski.com/c-sharp/the-fastest-way-to-read-and-process-text-files
Convert String To Integer
https://cc.davelozinski.com/c-sharp/fastest-way-to-convert-a-string-to-an-int
Monitor log file?
- BareTail
- mTail
- SnakeTail
- MemoryMappedFile
- FileSystemWatcher
Live Log Viewer
https://www.codeproject.com/tips/371229/live-log-viewer
https://www.raymond.cc/blog/monitor-log-or-text-file-changes-in-real-time-with-notepad/
Open file readonly:
var fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); using (var sr = new StreamReader(fs)) { // etc... }
C# Advanced
An advanced introduction to C# - Lecture Notes
https://www.codeproject.com/Articles/1094079/An-advanced-introduction-to-Csharp-Lecture-Notes-P
- Lecture Notes Part 1 of 4 - An advanced introduction to C#
- Lecture Notes Part 2 of 4 - Mastering C#
- Lecture Notes Part 3 of 4 - Advanced programming with C#
- Lecture Notes Part 4 of 4 - Professional techniques for C#
Florian Rappl - Professional Profile
https://www.codeproject.com/script/Membership/View.aspx?mid=3223592