2018年3月26日 星期一

C# 宣告字串類型的列舉

當在 C# 中需要使用到字串類型的列舉時,你可以試試下列的做法定義 ContentTypeEnum
當定義好之後就可以在主程式中打 ContentTypeEnum. 就會跳出建議選單。


using System;
namespace CSharp_Test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(ContentTypeEnum.Json);
Console.ReadKey();
}
}
public static class ContentTypeEnum
{
public static String X_WWW_Form_Urlencoded { get { return "application/x-www-form-urlencoded"; } }
public static String Json { get { return "application/json"; } }
}
}

remove last word from SQL query

SET @columnSql = SUBSTRING ( @columnSql , 1 , LEN ( @columnSql ) - 1 )