你好,我正在做一個學校作業。我的程序中的所有東西都能正常工作,但老師希望我在我的一個構造函數中添加一個DateTime類型的參數。我有點困惑,因爲我認爲我已經有這種類型的參數:構造函數應該指定參數
using System;
using System.Windows.Forms;
namespace Assignment4
{
class Task
{
private string time = string.Empty;
private string date = string.Empty;
private DateTime dateTime = new DateTime();
private string description = string.Empty;
private object priorityType;
private string priority;
public string Description
{
get
{
return description;
}
set
{
description = value;
}
}
public DateTime DateTime
{
set
{
dateTime = value;
time = dateTime.TimeOfDay.ToString();
date = dateTime.Date.ToString("d");
}
}
public string Time
{
get
{
return time;
}
}
public string Date
{
get
{
return date;
}
}
public object PriorityType
{
set
{
priorityType = value;
priority = priorityType.ToString();
}
}
public string Priority
{
get
{
return priority;
}
}
}
}
爲datetime =值不是DateTime類型的參數?
什麼階級是這樣的。請顯示課程的聲明。這不是一個構造函數,而是一個屬性 – Steve
@Steve我想問題是''new DateTime();'... –