上一页 1 2 3 4 5 6 7 8 9 10 ··· 45 下一页

2024年5月15日

c# 判断是否为null, 到底使用 “is null“ 还是 “==null“

摘要: 判断是否为null 应该使用 is null 避免使用 “== null” 因为 后者可能调用 “operator ==” 另外1:C# 9.0 引入了 is not 另外2:有用的判断为null 后抛出异常的简洁语句: public static int CountNumberOfSInName( 阅读全文

posted @ 2024-05-15 13:59 norsd 阅读(14) 评论(0) 推荐(0) 编辑

2024年4月28日

Wind WSS 与 WSET 中读取合约ContractMultiplier的问题

摘要: WSET 中读取某一个Underlying的期权合约时, 2 可以设置,也必须设置一个时间, 例如 上图中 2020-11-30 是510050.SH的分红日,期权老合约变为A,同时有新合约M成为标准合约 如果把日期改为2020-11-29则会返回还没有变成A合约的M标准合约 随后返回的数据项中 可 阅读全文

posted @ 2024-04-28 13:28 norsd 阅读(3) 评论(0) 推荐(0) 编辑

CentOS设置定时任务

摘要: crontab 的配置文件在/var/spool/cron/下面 如果是root用户,文件名就是root 语法规则: https://blog.csdn.net/xinyflove/article/details/83178876 阅读全文

posted @ 2024-04-28 08:23 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年4月18日

关于函数参数压入堆栈, C#函数作为CallBack的问题@CTP

摘要: 关于函数参数压入堆栈@CTP 问题描述: 之前使用C#的Delegate描述C++的类函数 如下: ///请求查询合约响应 virtual void OnRspQryInstrument(CThostFtdcInstrumentField *pInstrument, CThostFtdcRspInf 阅读全文

posted @ 2024-04-18 13:40 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2024年4月12日

c++ 编译找不到 .pch

摘要: Reference:https://www.viva64.com/en/b/0265/ Enable precompiled headers in all configurations for all *.cpp files. It can be done on the “Precompiled H 阅读全文

posted @ 2024-04-12 11:01 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年4月8日

Linux 设置路由

摘要: route add -net 192.168.106.0/24 gw 170.20.18.3 em1 添加奇怪的路由必须指定gateway例如: route add -net 192.168.100.0/24 gw 10.10.10.1 如果只指定device 可能路由没有效果, 比如上面的路由不设 阅读全文

posted @ 2024-04-08 21:46 norsd 阅读(4) 评论(0) 推荐(0) 编辑

Visual Studio Code 隐藏特定文件

摘要: 在setting.json中添加如下代码 "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/CVS": true, "**/.DS_Store": true, "**/__pycache__":true 阅读全文

posted @ 2024-04-08 09:05 norsd 阅读(3) 评论(0) 推荐(0) 编辑

C# ComboBox 使用 DataSource SelectedIndex无法设置的问题

摘要: 在C#中如下代码 var cbo = new ComboBox(); cbo.DropDownStyle = ComboBoxStyle.DropDownList; var cbo.DataSource = new int[]{1, 2, 3}; cbo.SelectedIndex = 0; cbo 阅读全文

posted @ 2024-04-08 07:05 norsd 阅读(9) 评论(0) 推荐(0) 编辑

2024年4月5日

Windows下如何确定虚函数在虚函数表中的位置

摘要: 我需要用c#调用 c++ 的 类的函数, 虽然可以通过头文件的顺序,但是如果可以打印出虚函数在虚表中的Offset更好。 测试要求: Windows, x86 只有1层虚函数,没有被override过 虚函数调用如下 auto a_reqCreditDetail = &XtTraderApi::re 阅读全文

posted @ 2024-04-05 19:05 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年3月21日

c# .net Framework 转化为 .net Standard

摘要: dotnet migrate-2017 migrate -t netstandard2 阅读全文

posted @ 2024-03-21 15:18 norsd 阅读(3) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 45 下一页

导航