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

📄 crawlsampleunit.cs

📁 用C#编写的一个款搜索engine的源代码!摘自<Visual c#2005 程序设计>
💻 CS
字号:
using System;

namespace SECompare.Kernel
{
	/// <summary>
	/// Summary description for CrawlSampleUnit.
	/// </summary>
	public class CrawlSampleUnit
	{
		private String mWords;
		private int mFrequency;

		public CrawlSampleUnit(String Words,int Frequency)
		{
			this.mWords = Words;
			this.mFrequency = Frequency;
		}


		public String Words
		{
			get
			{
				return this.mWords;
			}
		}


		public int Frequency
		{
			get
			{
				return this.mFrequency;
			}
		}

		public override String ToString()
		{
			return this.mWords + "\t" + this.mFrequency.ToString();
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -