当前位置: 首页>>代码示例>>C#>>正文


C# Tag.AddList方法代码示例

本文整理汇总了C#中Tag.AddList方法的典型用法代码示例。如果您正苦于以下问题:C# Tag.AddList方法的具体用法?C# Tag.AddList怎么用?C# Tag.AddList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Tag的用法示例。


在下文中一共展示了Tag.AddList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Save

 public static void Save(Tag parent, Dictionary<byte, ItemSlot> slots)
 {
     if (parent.Contains("Inventory")) parent["Inventory"].Remove();
     Tag inventory = parent.AddList("Inventory", TagType.Compound);
     foreach (ItemSlot slot in slots.Values) {
         if (slot.Item == null) continue;
         Tag item = inventory.AddCompound();
         item.Add("id", slot.Item.ID);
         item.Add("Slot", slot.Slot);
         item.Add("Count", slot.Item.Count);
         item.Add("Damage", slot.Item.Damage);
     }
 }
开发者ID:Nhale,项目名称:INVedit,代码行数:13,代码来源:Inventory.cs

示例2: AddNode

 private void AddNode(Tag parent,string name,Node node)
 {
     if (node.Value==null) return;
     switch (((IList<Type>)supported).IndexOf(node.Value.GetType())) {
         case 8:
             List<Node> l = (List<Node>)node.Value;
             Tag list;
             if (name==null) list = parent.AddList(ListType(l));
             else list = parent.AddList(name,ListType(l));
             foreach (Node n in l) AddNode(list,n);
             break;
         case 9:
             Dictionary<string,Node> dict = (Dictionary<string,Node>)node.Value;
             Tag compound;
             if (name==null) compound = parent.AddCompound();
             else compound = parent.AddCompound(name);
             foreach (KeyValuePair<string,Node> kvp in dict)
                 AddNode(compound,kvp.Key,kvp.Value);
             break;
         default:
             if (name==null) parent.Add(node.Value);
             else parent.Add(name, node.Value);
             break;
     }
 }
开发者ID:welterde,项目名称:obsidian,代码行数:25,代码来源:NbtHost.cs


注:本文中的Tag.AddList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。