Nexus.Client.Games.Gamebryo.Tools.TESsnip.GroupRecord.GetIDs C# (CSharp) Méthode

GetIDs() private méthode

Gets the ids of the sub-records in the record.
private GetIDs ( bool lower ) : List
lower bool Whether or not to lower-case the returned ids.
Résultat List
		internal override List<string> GetIDs(bool lower)
		{
			List<string> list = new List<string>();
			foreach (Record r in Records) list.AddRange(r.GetIDs(lower));
			return list;
		}