Nexus.Client.Games.Gamebryo.Tools.TESsnip.GroupRecord.GroupRecord C# (CSharp) Method

GroupRecord() private method

The copy constructor.
private GroupRecord ( GroupRecord gr ) : System
gr GroupRecord The group record to copy.
return System
		private GroupRecord(GroupRecord gr)
		{
			Name = "GRUP";
			data = (byte[])gr.data.Clone();
			groupType = gr.groupType;
			dateStamp = gr.dateStamp;
			flags = gr.flags;
			Records = new List<Rec>(gr.Records.Count);
			for (int i = 0; i < gr.Records.Count; i++) Records.Add((Rec)gr.Records[i].Clone());
			Name = gr.Name;
			descriptiveName = gr.descriptiveName;
		}

Same methods

GroupRecord::GroupRecord ( string data ) : System
GroupRecord::GroupRecord ( uint Size, BinaryReader br, bool Oblivion ) : System