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