SenseNet.ContentRepository.Fields.VoteData.AddVote C# (CSharp) Method

AddVote() public method

public AddVote ( int position ) : void
position int
return void
        public void AddVote(int position)
        {
            CountVotes[position - 1] += 1;
            CalculateData();
        }