在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()); } } }
沒有留言:
張貼留言