ArcGISCompare.MiscProcs.fileNameONLY C# (CSharp) Méthode

fileNameONLY() static private méthode

static private fileNameONLY ( String fullName ) : String
fullName String
Résultat String
        internal static String fileNameONLY(String fullName)
        {
            FileInfo theF = new FileInfo(fullName);
              return theF.Name;
        }