itemcommentselement.cs

来自「自己做的一个浏览器~~大家请看看~如果合意给个彩头」· CS 代码 · 共 24 行

CS
24
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace APLib.RSS
{
	/// <summary>
	/// 项目评论类
	/// 与项目相关的评论的URL链接地址
	/// </summary>
	public class ItemCommentsElement : RSSTextNode
	{
		/// <summary>
		/// 节点名称
		/// </summary>
		public new const string Name = "comments";

		public override string GetNodeName()
		{
			return Name;
		}
	}
}

⌨️ 快捷键说明

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