【经验记录】C#中,库函数有bug,会将http所返回的response响应中的headers头信息中的Set-Cookie值,解析错误,丢失部分cookie
crifan 1年前 (2023-10-25) 9017浏览 0评论
【问题】 访问一个页面: https://login.live.com/ppsecure/post.srf?wa=wsignin1.0&rpsnv=11&ct=1328070682&rver=6.1.6206.0&wp...
crifan 1年前 (2023-10-25) 9017浏览 0评论
【问题】 访问一个页面: https://login.live.com/ppsecure/post.srf?wa=wsignin1.0&rpsnv=11&ct=1328070682&rver=6.1.6206.0&wp...
crifan 1年前 (2023-10-25) 9600浏览 0评论
【问题】 C#中,通过VS2010中的调试过程中发现,访问某个网页,获得对应的http的response中的headers中的Set-Cookie的内容是: Set-Cookie: MSPRequ=/;Version=1;version&...
crifan 5年前 (2019-08-19) 1539浏览 0评论
C#中想要初始化一个二维浮点数数组 [[-0.171, -0.22 , -8.879], [-0.147, -0.22 , -8.696], ... [-0.098, -0.355, -8.733]] 结果写成: doub...
crifan 5年前 (2019-08-19) 2235浏览 0评论
C#中,想要去打印字符串,其中包括花括号,去试了试: foreach (double curItem1Value in outputList1) { Console.Write...
crifan 5年前 (2019-08-19) 1447浏览 0评论
对于: Tuple<double[], double[]> output = crifanDFT.DFT(input); double[] outputList1 = output.Item...
crifan 6年前 (2018-12-30) 2449浏览 0评论
之前已经: 【调研】windows 服务器 接口 开发 想要实现: 写代码和接口去调用wsdl的接口 先去: 【未解决】Windows中用Visual Studio 2017去搭建一个wsdl的服务器端 C# 调用 wsdl C# 调用WebS...
crifan 11年前 (2014-05-08) 8868浏览
【问题】 C#中已经有了一个ComboBox和一个特定的结构体数组: private struct keyValueList { public string Key{get;set;} // key public List<st...
crifan 11年前 (2013-12-06) 13950浏览 1评论
【问题】 之前的C#代码,处理excel正常的,结果现在出错了: An unhandled exception of type ‘System.InvalidCastException’ occurred in Fiv...
crifan 11年前 (2013-11-29) 13643浏览 0评论
【问题】 拿到一个VS2010的项目,C#代码。 用VS打开后,双击Form1.cs去打开,结果出错: 若要在加载设计器前避免可能发生的数据丢失,必须纠正以下错误 类 Form1 可以进行设计,但不是文件中的第一个类。Visu...
crifan 11年前 (2013-10-30) 5052浏览 0评论
【背景】 在 【记录】eBay API的开发流程 中,折腾完了: 【记录】注册成为eBay开发者(eBay Developers Program)+创建Sanbox Key和Production Key 就可以继续去折腾代码了。 所以先...