📄 istate.cs
字号:
namespace UDDI_Explorer
{
using System;
/// <summary>
/// Summary description for IMemento.
/// </summary>
public interface IMemento
{
void SetState(object obj);
object GetState();
//kind of action
string Action
{
get;
set;
}
}
internal interface IMementoSupporter
{
IMemento Memento
{
get;
set;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -