TranslateTool.GenerateDll.GetResourcesName C# (CSharp) Method

GetResourcesName() private method

private GetResourcesName ( ResXFile resxFile, string directoryPath ) : string
resxFile ResXFile
directoryPath string
return string
        string GetResourcesName(ResXFile resxFile, string directoryPath)
        {
            string newFileName = Path.Combine(directoryPath, Path.GetFileName(resxFile.LocalizedFileName));
            newFileName = Path.ChangeExtension(newFileName, ".resources");
            return newFileName;
        }