ClrPlus.Scripting.MsBuild.Building.BuildMessage.ToByteArray C# (CSharp) Method

ToByteArray() public method

public ToByteArray ( ) : byte[]
return byte[]
        public byte[] ToByteArray()
        {
            var result = JsonSerializer.SerializeToString(this);
            OutputDebugString(result);

            // return JsonSerializer.SerializeToString(this).ToByteArray();
            return result.ToByteArray();
        }