我正在C#中開發一個winform
應用程序,並且一切正常。但是,當我嘗試運行應用程序時,突然間出現了這個奇怪的錯誤。命名空間'<全局命名空間>'包含與別名'PersianDate'衝突的定義
命名空間「」包含衝突與別名定義「PersianDate」
這是引發錯誤的行。
private PersianDate _quotationDate;
我在得到錯誤之前完成的所有事情是添加這個form_load
事件。
private void frmAddDragSource_Load(object sender, EventArgs e)
{
this.Text = "Source";
}
有沒有人知道爲什麼發生這種情況,我該如何解決它?
UPDATE 我usings:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlServerCe;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using FishTablighPro.Utility;
using PersianDate = FreeControls.PersianDate;
展你的'使用'。 – haim770
@ haim770 Plz檢查更新的部分 –
爲什麼你必須添加'使用PersianDate = FreeControls.PersianDate;'? – haim770