I need to pass an array of bytes from my java application to a C # application. One option is to simply save it to a file, but it is not so secure. I was thinking maybe there is a way to use memystream or something, so the data will not be stored anywhere else but memory.
EDIT: just to provide more information. Applications run on the same computer, and C # applications run a java application.
source
share