Nexus.Client.Games.Gamebryo.Tools.TESsnip.SubRecord.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>();
			if (Name == "EDID")
			{
				if (lower)
				{
					list.Add(this.GetStrData().ToLower());
				}
				else
				{
					list.Add(this.GetStrData());
				}
			}
			return list;
		}
	}