02 2021 档案

摘要:1. .NET和C#有什么区别 答:.NET一般指 .NET FrameWork框架,它是一种平台,一种技术。 C#是一种编程语言,可以基于.NET平台的应用。 2.一列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求第30位数是多少,用递归算法实现。答: public cl 阅读全文
posted @ 2021-02-28 22:14 lishidefengchen 编辑
摘要:上面的设置好以后,右键Android项目,选择【存档】,对,你没看错。对于Android开发,它不叫【发布】,而是叫【存档】,如下图所示: 等程序存档完毕后,打开不同的目录 ,就可以找到我们生成的apk安装包啦。 ( 完) 阅读全文
posted @ 2021-02-26 11:47 lishidefengchen 编辑
摘要:今天跟着微软官方学习xamarin,做到导航切换,死活出不来编辑详情页面,最后发现是自己写导航参数的时候等号前后拼写的时候添加空格导致,真是一不注意就出错。 正确的拼出来是:note?itemid=xxxx 错误的拼出来是:note?itemid = xxx 能够注意到他们的区别了吧:) 阅读全文
posted @ 2021-02-25 18:05 lishidefengchen 编辑
摘要:安装依赖 yum install -y curl policycoreutils-python-utils openssh-server 启用ssh systemctl enable sshd systemctl start sshd 添加http服务到firewalld systemctl sta 阅读全文
posted @ 2021-02-25 10:29 lishidefengchen 编辑
摘要:目录结构 【FilterConfig.cs】 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace AA.App_Sta 阅读全文
posted @ 2021-02-24 17:05 lishidefengchen 编辑
摘要:假如我们需要确定谁占用了我们的80端口 在windows命令行窗口下执行: C:\>netstat -aon|findstr "80" TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448 看到了吗,端口被进程号为2448的进程占用,继续执行下面命令: C:\>task 阅读全文
posted @ 2021-02-24 10:26 lishidefengchen 编辑
摘要:dotnet new webApp -o 项目名称 --no-https 阅读全文
posted @ 2021-02-22 10:50 lishidefengchen 编辑
摘要:【Windows】 Trust the HTTPS development certificate by running the following command: dotnet dev-certs https --trust Then, running command: dotnet run 阅读全文
posted @ 2021-02-22 10:48 lishidefengchen 编辑
摘要:项目新建后,修改完连接字符串后直接先按F5启动,否则,会一直提示连接数据库失败。 数据库不用手动创建,这个框架会自动帮忙创建好数据库。 阅读全文
posted @ 2021-02-18 14:51 lishidefengchen 编辑

点击右上角即可分享
微信分享提示