我目前正在处理转换组件脚本。我要将输入日期列的格式设置为“ MMddYYYY”。
public override void Input0_ProcessInputRow(Input0Buffer Row)
{
/*
* Add your code here
*/
Row.SampleDate = Convert.ToDateTime(Row.SampleDate.ToString("MM/dd/yyyy"));
Row.TestDate = Convert.ToDateTime(Row.TestDate.ToString("MM/dd/yyyy"));
Row.ComponentsTestDate = Convert.ToDateTime(Row.ComponentsTestDate.ToString("MM/dd/yyyy"));
}
脚本执行后,我仍然会获得时间戳记值: