上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 86 下一页
摘要: 1.基本 //接受一个对象,该对象里必须包含 number类型的age属性 function fun(stu:{age:number}){ console.info('hello') } 2.使用interface interface Student{ age:number } function f 阅读全文
posted @ 2020-05-04 12:12 富坚老贼 阅读(88) 评论(0) 推荐(0) 编辑
摘要: nuget :Oracle.EntityFrameworkCore 直接写连接串的方式 此方法实例化DDDContext时无需传入参数 using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.Dat 阅读全文
posted @ 2020-05-02 15:26 富坚老贼 阅读(1477) 评论(0) 推荐(0) 编辑
摘要: Input and selections Checkbox Date & Time Pickers Radio Slider Switch TextField 阅读全文
posted @ 2020-05-01 14:28 富坚老贼 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-01 10:57 富坚老贼 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 还可以参考 https://github.com/wendal/go-oci8 一、下载oci ORACLE调用接口(Oracle Call Interface简称OCI) https://www.oracle.com/database/technologies/instant-client/dow 阅读全文
posted @ 2020-04-30 22:43 富坚老贼 阅读(1289) 评论(0) 推荐(0) 编辑
摘要: 扩展方法的要求: 1.扩展方法要求在一个静态类中 2.扩展方法本身也是静态方法 3.扩展方法第一个参数是 [this 要扩展的类 参数名称] public class Program { static void Main() { int a = 10; int b=a.fun(); Console. 阅读全文
posted @ 2020-04-30 20:21 富坚老贼 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 一、WebView AndroidManifest.xml <uses-permission android:name="android.permission.INTERNET"/> layout <WebView android:layout_width="match_parent" androi 阅读全文
posted @ 2020-04-28 10:35 富坚老贼 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 再sqlpuls里执行 set timing on 再执行sql语句 阅读全文
posted @ 2020-04-27 16:05 富坚老贼 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 一、C#自带特性 1.AttributeUsage特性(自定义特性的特性) [AttributeUsage(validon,AllowMultiple=allowmultiple,Inherited=inherited)] (1)validon表示 特性可以提供给什么类型 All 可以对任何应用程序 阅读全文
posted @ 2020-04-25 20:39 富坚老贼 阅读(210) 评论(0) 推荐(0) 编辑
摘要: override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) //获取系统通知服务 val manager= 阅读全文
posted @ 2020-04-23 10:12 富坚老贼 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 86 下一页