コード例 #1
0
ファイル: DataService.cs プロジェクト: epmik/poe-analyzer
        private static string GetDataFileName(CharacterClass characterClass, string extension)
        {
            var document = characterClass.GetAttributeValue <DataDocumentAttribute, string>(o => o.Document);

            if (!document.EndsWith(extension))
            {
                document += extension;
            }

            return(document);
        }