紀錄在MAC上配合Docker 來使用SQL,並匯入AdventureWorks sample databases 來使用資料
2023-07-26
紀錄在MAC上配合Docker 來使用SQL,並匯入AdventureWorks sample databases 來使用資料
透過操作Finder 取得MAC 資料夾的路徑
Sharepoint Event Receiver deploy error
Error occurred in deployment step 'Activate Features': Feature with Id ' *** ' is not installed in this farm, and cannot be added to this scope.
CSS, Pseudo Element,border-color,
button,icon,click
SharePoint sitemanager
C# 的單引號和雙引號在宣告變數時,有不同的意思。
單引號表示字元(Char)
char c = 't';
雙引號表示字串(String)
string s = "test";
EX: 判斷文字是否含有字母 t
for (int i = 0; i < s.length;i++)
{
if ( s[i] == 't')
{
// S 含有字母t
}
}
C# 隨機產生字的陣列