摘要:
循环: int[] number=new int[] {1,2,3,4,5}; foreach(int i in number)//把数组的值遍历出来赋值给i { numbers += i; } 把字符串根据“,”分割成数组 string num = "1,2,3,4,5,6" ; string[]
阅读全文
posted @ 2023-05-05 17:39
阿霖找BUG
阅读(6)
推荐(0)
编辑
摘要:
第一步先在配置文件中写入数据库的配置信息 <add name="connString" connectionString="server=服务器名;database=数据库名;uid=登录名;pwd=登录密码"/> <connectionStrings> <add name="connString"
阅读全文
posted @ 2023-05-05 16:33
阿霖找BUG
阅读(76)
推荐(0)
编辑
摘要:
const double PAI= 3.14;//常量 PAI = 3; 枚举: internal class Program { static void Main(string[] args) { Gender gender =Gender.Male; Console.WriteLine(gend
阅读全文
posted @ 2023-05-05 14:00
阿霖找BUG
阅读(13)
推荐(0)
编辑