NetMud.DataAccess.FileSystem.PlayerData.GetCharacterFilename C# (CSharp) 메소드

GetCharacterFilename() 개인적인 메소드

Gets the statically formatted filename for a player
private GetCharacterFilename ( ICharacter entity ) : string
entity ICharacter The player in question
리턴 string
        private string GetCharacterFilename(ICharacter entity)
        {
            return string.Format("{0}.character", entity.ID);
        }