摘要:
后端:C# .net framework 4.8 WebApi using System; using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Net.WebSockets; 阅读全文
摘要:
public async Task<bool> GetVAsyncs() { var ms = new List<int>() { 2000, 3000, 1000, 2000, 3000, }; var tasks = new List<Task<bool>>() { }; ms.ForEach( 阅读全文
摘要:
值类型可以直接传值。 复杂类型只能ref传址或者用Variant包装,C#用object接收再解包。 传址就要注意内存分配位置了。 VB6调用C#对象,那就不能预定义收接对象的长度。 VB6传值就容易一些, 用Variant包装 VB6Project下载 using System; using Sy 阅读全文