Hi, I'm coding a file in base 64 in c #, but for large files it does not work anymore.
char[] base64 = new char[miArchivo.Length];
Convert.ToBase64CharArray(miArchivo, 0, miArchivo.Length, base64, 0);
return Encoding.ASCII.GetBytes(base64);
I've tried it with MemoryStream
but it has not worked, the problem is in the size of the char [] that in base64 takes more I think.