- 課程名稱: Angular 2 開發實戰:新手入門篇
為了能讓大家能在課堂上順利地進行實作,請先將需要的軟體全部安裝好,以下是安裝的相關軟體與安裝步驟與說明。
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Http; | |
| using System.Web.Mvc; | |
| using System.Web.Optimization; | |
| using System.Web.Routing; | |
| namespace WebApiSample |
| using System.IO; | |
| using System.Text; | |
| using System.Xml; | |
| using System.Xml.Serialization; | |
| namespace ConsoleApplication1 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |
| public enum Order | |
| { | |
| Ascending, | |
| Descending | |
| } |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication1 | |
| { | |
| class Program |
為了能讓大家能在課堂上順利地進行實作,請先將需要的軟體全部安裝好,以下是安裝的相關軟體與安裝步驟與說明。
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <rule name="SPA" stopProcessing="true"> | |
| <match url=".*" /> | |
| <action type="Rewrite" url="/" /> | |
| <conditions> | |
| <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> |
| [alias] | |
| st = status | |
| sts = status -s | |
| co = checkout | |
| ci = commit | |
| br = branch -a | |
| re = remote | |
| di = diff | |
| dump = cat-file -p | |
| type = cat-file -t |