TeamCity.VSTest.TestLogger/IBytesWriter.cs (
7
lines of code) (
raw
):
namespace TeamCity.VSTest.TestLogger; using System; internal interface IBytesWriter : IDisposable { void Write(byte[] bytes); void Flush(); }