码迷,mamicode.com
首页 > Windows程序 > 详细

C# int与char或string拼接

时间:2019-08-02 11:27:02      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:test   using   har   mon   vat   star   void   string   oid   

using UnityEngine;
public class Test: MonoBehaviour{
    private void Start (){
        Debug.Log(',');//output:,
        Debug.Log(1+',');//output:45

        int intValue1=1+',';
        Debug.Log(intValue1);//output:45
        //int intValue2=1+",";//无法将类型"string"隐式转换为"int"

        //string str1=1+',';//无法将类型"int"隐式转换为"string"
        string str2=1+",";
        Debug.Log(str2);//output:1,
    }
}                           

C# int与char或string拼接

标签:test   using   har   mon   vat   star   void   string   oid   

原文地址:https://www.cnblogs.com/kingBook/p/11286909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!