using System.IO; namespace Deltares.Stability.Calculation.Inner { public class FileFunctions { public static bool FileExists(string AFilename) { bool result; result = false; return result; } public static void ReadHeading(ref Stream Lfr, string LPName, ref int LPVersion) {} } // end FileFunctions }