ActivEarth.Objects.Groups.Group.Group C# (CSharp) Метод

Group() публичный Метод

Creates a new Group. This constructor used when rebuilding Group object from DB.
public Group ( ) : System
Результат System
        public Group()
        {
            this.GreenScore = 0;
            this.Wall = new Wall();
            this.ActivityScore = new ActivityScore();
            this.Contests = new List<Contest>();
            this.HashTags = new List<string>();
            this.Members = new List<User>();
        }

Same methods

Group::Group ( string name, User owner, string description, List hashtags ) : System