C#问题,我在学习其它知识的时候用到C#,下面的语句都是什么意思?
publicclassMovie{publicintID{get;set;}publicstringTitle{get;set;}publicDateTimeReleas...
public class Movie
{
public int ID { get; set; }
public string Title { get; set; }
public DateTime ReleaseDate { get; set; }
public string Genre { get; set; }
public decimal Price { get; set; }
} 展开
{
public int ID { get; set; }
public string Title { get; set; }
public DateTime ReleaseDate { get; set; }
public string Genre { get; set; }
public decimal Price { get; set; }
} 展开
4个回答
展开全部
public class Movie //声明一个类
{
public int ID { get; set; }//字段赋读写的权限
public string Title { get; set; }
public DateTime ReleaseDate { get; set; }
public string Genre { get; set; }
public decimal Price { get; set; }
}
{
public int ID { get; set; }//字段赋读写的权限
public string Title { get; set; }
public DateTime ReleaseDate { get; set; }
public string Genre { get; set; }
public decimal Price { get; set; }
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你应该是引用了别人写的.dll套件,而没有这个套件的Source Code,
所以当你在你的程序码中要追查Movie这个套件时,
就只显示这个Movie类的宣告,
没办法显示这个类的完整程序内容
所以当你在你的程序码中要追查Movie这个套件时,
就只显示这个Movie类的宣告,
没办法显示这个类的完整程序内容
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这些都只是定义的一些属性 用来存取数据的 估计你这段程序应该是用来交互数据库的 从你程序可以看出每一条代码对应一天数据库字段
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询