chinhdo / txFileManager

.NET Transactional File Manager is a .NET Standard library that allows you to enlist file operations (file/folder copies, writes, deletes, appends, etc.) in distributed transactions.
MIT License
111 stars 13 forks source link

issue #43: fixes for WriteAllText with and without encoding #44

Open NielsFestjens opened 1 year ago

NielsFestjens commented 1 year ago

WriteAllText without encoding: use the .Net overload without encoding. WriteAllText with encoding: pass on the encoding to .Net when not in a transaction.

chinhdo commented 1 year ago

Thanks @NielsFestjens I will take a look soon.