📄 ibuilditemsmodifier.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// <version>$Revision: 1174 $</version>
// </file>
using System;
using System.Collections;
namespace ICSharpCode.Core
{
/// <summary>
/// When a <see cref="IDoozer">doozer</see> returns an object implementing
/// this interface, the <see cref="Apply"/> method is called on the list of items
/// that has been built.
/// This interface can be used to support special <see cref="IDoozer">doozers</see>
/// that do not simply build one item but want to modify the list of items built so far.
/// Example use is the <see cref="IncludeDoozer"/> which uses this interface to return
/// multiple items instead of one.
/// </summary>
public interface IBuildItemsModifier
{
void Apply(IList items);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -