C# 中定义一个方法,参数是类 有可能是class1,class2等,这个类的怎么定义。也就是将下面代码抽成方法
publicBaseHeadGetHeadByNews(web_newsnews){BaseHeadhead=newBaseHead();head.title=news....
public BaseHead GetHeadByNews(web_news news)
{
BaseHead head = new BaseHead();
head.title = news.title;
head.metas.Add(new MetaAttr()
{
attribute = "name",
value = "keywords",
content = news.keywords
});
head.metas.Add(new MetaAttr()
{
attribute = "name",
value = "description",
content = news.description
});
return head;
} 展开
{
BaseHead head = new BaseHead();
head.title = news.title;
head.metas.Add(new MetaAttr()
{
attribute = "name",
value = "keywords",
content = news.keywords
});
head.metas.Add(new MetaAttr()
{
attribute = "name",
value = "description",
content = news.description
});
return head;
} 展开
展开全部
没看明白你的意思,你贴出来的代码本来就是方法!!
参数类就这样定义
public class web_news
{
public string title { get; set; }
public string keywords { get; set; }
public string description { get; set; }
}
参数类就这样定义
public class web_news
{
public string title { get; set; }
public string keywords { get; set; }
public string description { get; set; }
}
更多追问追答
追问
public string getclass (class(这个class类型是变的) cls) 这个class有可能是class1,class2 等等。如何表示这个方法参数
追答
没明白你的意思。你是想用反射或继承来抽象?
但是你方法里面全部是写死了的啊,怎么抽啊!!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询