摘要:
https://leetcode.cn/problems/ransom-note/submissions/ 1 class Solution { 2 public boolean canConstruct(String ransomNote, String magazine) { 3 // 两个字符 阅读全文
摘要:
# '防止依赖注入' #是将传入的值当做字符串的形式 , # 防止依赖注入 $是将传入的数据直接显示生成sql语句 https://blog.csdn.net/hao65103940/article/details/79099159 阅读全文
摘要:
1. 设置TextBox空间允许多行: this.textBox1.Multiline = true; 2.换行字符是使用"\r\n"。 1 textBox1.Text += "第0行\r\n"; 2 textBox1.Text += "第1行\r\n"; 3 textBox1.Text += "第 阅读全文
摘要:
[STAThread] STAThread:Single Thread Apartment Thread.(单一线程单元线程) []是用来表示Attributes; [STAThread] 是一种线程模型,用在程序的入口方法上(在C#和VB.NET里是Main()方法),来指定当前线程的Apartm 阅读全文
摘要:
1.从工具箱中“双击” FolderBrowserDialog(或则在类中使用 new FolderBrowserDialog() 均可,本文主要描述窗体使用)。 2.加上一个“选择”按钮,在按钮点击事件下添加如下代码,控件可以投入使用了。 1 /// <summary>选择按钮点击事件</summ 阅读全文
摘要:
https://it.cha138.com/javascript/show-6146927.html 【SQL】 语句中,IN效率低下,最好使用【Exitis】 或内循环替代。 阅读全文