2010年5月12日 星期三

將程式碼轉為Html語法的網站

因為我主要的文章都需要帶有程式碼,但是google的部落格卻又不支援。所以要找個方法來讓我的程式碼變成html,這樣以後才方便貼。

在google之後,找了幾個方法確定了這個方法:
C# code format 


這是一個網址,裡面可以幫你把程式碼轉為html語法。當然轉換的目地是為了能夠順利的轉為html並貼在文章裡。

裡面會一個大大的textbox,將程式碼放之後就可以轉為html語法。但是需額外將css加入範本中。

下面就是使用該網站產生html後的結果。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace C_Test
{
    static class Program
    {
        /// <summary>
        /// 應用程式的主要進入點。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

沒有留言:

張貼留言