Bike.Interpreter.BikeImportContext.ImportBikeFile C# (CSharp) Метод

ImportBikeFile() публичный Метод

public ImportBikeFile ( string currentFolder, string filePath, bool &alreadyImported ) : string
currentFolder string
filePath string
alreadyImported bool
Результат string
        public string ImportBikeFile(string currentFolder, string filePath, out bool alreadyImported)
        {
            var fullPath = ResolvePath(currentFolder, filePath);
            return ImportBikeFile(fullPath, out alreadyImported);
        }

Same methods

BikeImportContext::ImportBikeFile ( string filePath, bool &alreadyImported ) : string

Usage Example

Пример #1
0
 public string ImportFile(string path, out bool alreadyImport)
 {
     return(bikeImportContext.ImportBikeFile(CurrentExecFolder, path, out alreadyImport));
 }