C#中怎么将int类型string类型

发布时间:2024年01月09日

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ShowValue
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int NgValue = 5;
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show($“{NgValue}”);
}
}
}

文章来源:https://blog.csdn.net/weixin_42609581/article/details/135471443
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。