📄 ibidirectionalenumerator.cs
字号:
using System;
#if USE_GENERICS
using System.Collections.Generic;
#else
using System.Collections;
#endif
namespace Perst
{
///<summary>
/// Enumerator for moving in both directions
/// </summary>
#if USE_GENERICS
public interface IBidirectionalEnumerator<T> : IEnumerator<T>
#else
public interface IBidirectionalEnumerator : IEnumerator
#endif
{
/// <summary>
/// Move curent position to the previous element
/// </summary>
/// <returns>true if previous element exists, false otherwise
/// </returns>returns>
bool MovePrevious();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -