#pragma once namespace TranslatorTools { using namespace System; public ref class translation{ private: String^ key; String^ value; public: translation(void){key="";value="";}; virtual ~translation(void){}; }; public ref class folder{ array^ trans; private: String^ Name; String^ Path; public : folder(int size){ int i; Name="";Path=""; trans = gcnew array(size); for (i=0;i