using System.Collections.Generic;
namespace HelloWorldMvcApp
public class HomeController : Controller
public ActionResult Index()
var types = new List<string>() { "ATI","FICA","OTHER","FATCA","SOFP" };
types = types.OrderBy(t => t == "OTHER").ToList();