上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: oracle的安装,用户授权,表格操作,数据类型,ddl表格,dml数据。 下一篇:Oracle入门学习二 学习视频:https://www.bilibili.com/video/BV1tJ411r7EC?p=15 安装教程附带百度云安装包:https://blog.csdn.net/qq_4077 阅读全文
posted @ 2020-05-01 17:59 舒碧 阅读(1849) 评论(0) 推荐(2) 编辑
摘要: 视频:https://www.bilibili.com/video/BV1FJ411v7hv?p=15 进程:每一个应用程序都当做一个进程。 using System; using System.Diagnostics; namespace ConsoleApp2 { class Program { 阅读全文
posted @ 2020-04-28 07:44 舒碧 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: 续更中... x命名空间声明 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Static 用于检索静态值,其中包括常量、静态字段、静态属性、枚举值。注意:静态值更新了,属性值依然不会更新。 using System.Windows; 阅读全文
posted @ 2020-04-26 10:34 舒碧 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 推荐学习视频: 深入浅出WPF https://www.bilibili.com/video/BV1ht411e7Fe?p=2 强烈推荐WPF入门学习网站: https://www.wpf-tutorial.com/ https://www.c-sharpcorner.com/UploadFile/ 阅读全文
posted @ 2020-04-25 19:00 舒碧 阅读(1480) 评论(0) 推荐(3) 编辑
摘要: 建造代码和表示代码分离,建造顺序通常是稳定的,建造者隐藏了产品的组装过程,如果要增加产品的组装,可以新增具体的建造者。 #define PPP using System; using System.Collections.Generic; using System.ComponentModel; u 阅读全文
posted @ 2020-04-17 10:38 舒碧 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 在基类定义算法的结构,具体实现延迟到子类。 using System; namespace ConsoleApp2 { class Program { static void Main(string[] args) { TestPaper testPaperA = new TestPaperA(); 阅读全文
posted @ 2020-04-14 11:14 舒碧 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 克隆的深复制,浅复制。引用类型涉及深复制,深复制要考虑深几层,有没有可能出现死循环。 using System; namespace ConsoleApp2 { class Program { static void Main(string[] args) { Resume a = new Resu 阅读全文
posted @ 2020-04-13 22:29 舒碧 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 记录 https://docs.microsoft.com/zh-cn/dotnet/standard/io/file-path-formats Dos路径: \Program Files\Custom Utilities\StringFinder.exe 当前驱动器根路径上的绝对路径。 Direc 阅读全文
posted @ 2020-04-10 12:01 舒碧 阅读(1120) 评论(0) 推荐(0) 编辑
摘要: 将文本正确转换为 DateTime 需要执行三个子任务:1、正确格式的日期和时间字符串。2、区域性,不同地区的日期和时间表示格式有区别,字符串格式有区别。3、指定转换格式,例如转换后的DateTime,可能没有时间部分。 使用Parse转换和TryParse转换: string dateInput 阅读全文
posted @ 2020-04-04 11:58 舒碧 阅读(6717) 评论(0) 推荐(0) 编辑
摘要: 通过+、+=连接。 var str = "aa" + "bb" + "cc"; str += "dd"; 字符串内插 var str = $"aa{(5+9)}bb{(89+90)}"; 使用StringBuilder var sb = new System.Text.StringBuilder() 阅读全文
posted @ 2020-04-03 05:38 舒碧 阅读(554) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页