Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 PSI 清除项目中的日期格式字段?我做
taskRow.TASK_FINISH_DATE = newTask.FinishDate;
其中 taskRow 是 ProjectDataSet.TaskRow 类,newTask.FinishDate 是 DateTime 但有 GeneralDateNotValid 异常 - TASK_FINISH_DATE 不能小于 01.01.1984。
有方法
taskRow.SetTASK_FINISHDATENull();
有用。