ArcGISCompare.MiscProcs.fileNameONLY C# (CSharp) Method

fileNameONLY() static private method

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