类型转换

Posted namejr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类型转换相关的知识,希望对你有一定的参考价值。

string类型转枚举类型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication2
{
    enum operat : byte
    {
        north = 1
    }
    class Program
    {
        static void Main(string[] args)
        {
            string myString = "north";
            // string类型转换为枚举类型
            // 注意:必须在operat中含有string类型字符,且大小写要一致
            operat mySD = (operat)Enum.Parse(typeof(operat), myString);
            Console.WriteLine(mySD);
            Console.ReadKey();
        }
    }
}

 

以上是关于类型转换的主要内容,如果未能解决你的问题,请参考以下文章

Android:片段无法转换为上下文[重复]

HTML Bookmarklet模板:将任何JavaScript代码片段转换为Bookmarklet

对象不能从 DBNull 转换为其他类型。

结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url

片段无法转换为上下文

js常用代码片段(更新中)