⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 istate.cs

📁 In the previous article, we presented an approach for capturing similarity between words that was co
💻 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 + -