File Directory Visual C++ .NET

#include "stdafx.h"
using namespace System;
using namespace System::IO;
void main()
{
    FileStream ^fso = gcnew FileStream("file.dat", FileMode::Create,FileAccess::Write, FileShare::None);
    array^ data = gcnew array { 'T', 'h', 'i','\r', '\n' };
    for (int i = 0; i < data->Length-5; i += 5)
    {
        fso->Write(data, i, 5);
    }
    fso->Close();
    FileInfo ^fi = gcnew FileInfo("file.dat");
    FileStream ^fsi = fi->OpenRead();
  int fileLength = (int)fi->Length;
    int b;
    while ((b = fsi->ReadByte()) != -1)
    {
        Console::Write((Char)b);
    }
    fsi->Position = 0;
    array^ ca = gcnew array(fileLength);
    fsi->Read(ca, 0, fileLength);
    for (int i = 0; i < ca->Length; i++)
    {
        Console::Write((Char)ca[i]);
    }
    fsi->Close();
    fi->Delete();
}