ClrPlus.Scripting.MsBuild.Building.BuildMessage.ToByteArray C# (CSharp) 메소드

ToByteArray() 공개 메소드

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

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