NetMud.DataAccess.FileSystem.PlayerData.GetCharacterFilename C# (CSharp) Method

GetCharacterFilename() private method

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