static void CalculoDoIMC() {
using (var IMCorporea = Console.OpenStandardInput())
using (var ImcARQUIVO = new FileStream("IMC.txt", FileMode.Create))
using (var leitura = new BinaryReader(ImcARQUIVO))
{
Console.WriteLine("Informe o seu nome, Peso e Altura");
var buffert = new byte[1024];
double[] buffertInt = new double[buffert.Length];
while (true)
{
// var Nome = buffert[0];
// var Peso = buffert[1];
// var Altura = buffert[2];
// var imc = buffert[3];
// var imc1 = (Peso / (Altura) * (Altura));
// var buffert = buffert;
var bytesLidos = IMCorporea.Read(imc, 0, 1024);
ImcARQUIVO.Write(buffert, 1, 1024);
ImcARQUIVO.Flush();
Console.WriteLine($"Numero de BytesLidos { bytesLidos }");
}