TvDatabase.TvBusinessLayer.checkGentleFiles C# (CSharp) 메소드

checkGentleFiles() 개인적인 정적인 메소드

Checks several files that are needed for using the gentle framework for the database. If some files are not present in the working folder an System.IO.FileNotFoundException exception is thrown
private static checkGentleFiles ( ) : void
리턴 void
    private static void checkGentleFiles()
    {
      String filesNotFound = "";
      //filesNotFound += FileNotExistsString("Gentle.config");
      filesNotFound += FileNotExistsString("Gentle.Framework.dll");
      filesNotFound += FileNotExistsString("Gentle.Provider.MySQL.dll");
      filesNotFound += FileNotExistsString("Gentle.Provider.SQLServer.dll");

      if (!filesNotFound.Equals(""))
      {
        throw new FileNotFoundException("Files not found:" + filesNotFound);
      }
    }
TvBusinessLayer