📄 rssnew.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace 个性rss阅读器
{
[Serializable()]
public class RSSNews
{
string _Title="";
string _Link="";
string _Author="";
string _Category="";
string _PubDate="";
string _Description="";
public string Title
{
set { _Title = value; }
get { return _Title; }
}
public string Link
{
set { _Link = value; }
get { return _Link; }
}
public string Author
{
set { _Author = value; }
get { return _Author; }
}
public string Category
{
set { _Category = value; }
get { return _Category; }
}
public string PubDate
{
set { _PubDate = value; }
get { return _PubDate; }
}
public string Description
{
set { _Description = value; }
get { return _Description; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -