我想用這個插件來顯示博客帖子,但不是以圖像爲背景,客戶端想要不同顏色的圖像。從這裏的另一篇文章中,我已經想出了我認爲可以做到這一點的代碼,但是我無法在網站上看到它!這裏是我做的似乎在這裏工作的代碼。 Example where code is working. 這是目前有問題的網站。 The div site where it isn't working like it should... 你會看
我需要將大寫和小寫連續(交替)的短語單詞轉換。 例子。 輸入: the girl is pretty. 輸出: tHe GiRl Is PrEtTy 我曾嘗試下面的代碼,但它只能轉換第一個字母: char[] array = texto.ToCharArray();
if (array.Length >= 1)
{
if (char.IsLower(array[0]))
{