Binary.End
Binary.End(binary as binary) as binary
Returns a binary value corresponding to the end of binary. The returned value is always empty (i.e. it is 0 bytes in length).
Binary.End can be used to append to a binary value by replacing the end of the binary value.
Return the end of a binary value.
Binary.End(Text.ToBinary("Hello world!"))
Binary.FromText("", BinaryEncoding.Base64)
Show: