在LINQ查询中是否可以获取当前的枚举器(...或迭代器?不知道哪个是正确的?)
例如,我尝试创建所有当前加载的程序集的XML输出(通过LINQ to XML)。
Dim xmldoc As XDocument = New XDocument(
New XElement("Types",
Assembly.GetExecutingAssembly().GetReferencedAssemblies() _
.Select(Function(name) Assembly.Load(name)) _
.SelectMany(Function(assembly) assembly.GetTypes()) _
.Select(Function(type) New XElement("Type", type.FullName))))
输出看起来像这样。
<Types>
<Type>System.Object</Type>
<Type>FXAssembly</Type>
<Type>ThisAssembly</Type>
<Type>AssemblyRef</Type>
<Type>System.Runtime.Serialization.ISerializable</Type>
<Type>System.Runtime.InteropServices._Exception</Type>
.....
</Types>
是否有可能以某种方式从LINQ的选择中获得当前的“索引”(计数器?)?我想在XML中使用它
<Types>
<Type ID="1">System.Object</Type>
<Type ID="2">FXAssembly</Type>
<Type ID="3">ThisAssembly</Type>
<Type ID="4">AssemblyRef</Type>
<Type ID="or-some-other-unique-id-#5">System.Runtime.Serialization.ISerializable</Type>
.....
</Types>
答案 0 :(得分:8)
是的 - 你只需要使用overload of Select
which takes a Func<TSource, int, TResult>
。所以在C#中它会是这样的:
XDocument doc = new XDocument(new XElement("Types",
Assembly.GetExecutingAssembly().GetReferencedAssemblies()
.Select(name => Assembly.Load(name))
.SelectMany(assembly => assembly.GetTypes())
.Select((type, index) => new XElement("Type",
new XAttribute("ID", index + 1),
type.FullName))));
很抱歉,它不是在VB中,但它更有可能以这种方式工作 - 希望你能解决这个问题:)
答案 1 :(得分:0)
@ V-灯,
您可以执行类似的操作来获取迭代器索引:
XDocument xml = new XDocument(New XElement("Items", from item in someItemsResourses where item.FullName.length => 5 orderby item descending //Get Iterator Index here and make use of it as you wish let currIndex = someItemsResourses.IndexOf(item) select new XElement("item", new XAttribute("id", ?how?), item.FullName)))