田田 的文章
-
关于 .net:使用 abcpdf 列出 pdf 文档中的所有标签
listing all the tags in a pdf document using abcpdf 我正在尝试使用 AbcPdf .net 组件(版本 7)来处理一些 PDF 并生成元数据。我想知道是否有办法列出pdf…… -
关于 c#:SignedXml 生成无效签名
SignedXml generates invalid signatures 我一直试图让 .NET 中的 XMLDSIG 支持正常运行,更具体地说是 SignedXml 类。我正在实施第三方服务,他们最近才开…… -
-
关于c#:先使用Try Catch或校验值
Using Try Catch or check value first 我需要知道什么更好(对于性能和其他方面),在预期错误时使用 Try Catch 并且在错误发生时没有替代方案或首先检查值?…… -
关于asp.net:C# .NET Webforms -> ajaxcontroltoolkit.net -> AsyncFileUpload,触发OnClientUploadError serverside
C# .NET Webforms -> ajaxcontroltoolkit.net -> AsyncFileUpload, trigger OnClientUploadError serverside 作为参考,这是我在这里讨论的控件:Ajax…… -
关于 Visual Studio:在 VS 2015 社区版中将 .Net 框架从 4.5.2 更改为 4.5 时出现编译错误
Compilation Error when change .Net framework from 4.5.2 to 4.5 in VS 2015 Community edition 在 VS 2015 社区版中将我的 .Net 框架从 4.5.2 更改为 4.5…… -
关于.net:找不到匹配命令”dotnet-tool”的可执行文件
No executable found matching command "dotnet-tool" 我正在尝试使用以下命令(在网站上提供)从官方网站安装 Fake: 1 dotnet tool install fake-cl…… -
关于 c#:Entity Framework 6 和 LINQ – 重复记录
Entity Framework 6 and LINQ - Duplicated Records 我有一个标准的实体框架实现直接查询一个表,根本不涉及任何视图,代码如下: var r = cxt.HistoricalQ…… -
关于vb.net:覆盖之前安装的.NET winforms app
Overwriting previously installed .NET winforms app 对不起,如果以前有人问过这个问题,我已经搜索过但找不到答案。我创建了一个 WinForms VB.NET 应用程…… -
关于 .net:Office Powerpoint Ribbon 菜单项访问?
Office Powerpoint Ribbon menu item access? 是否可以从 Powerpoint 幻灯片中访问功能区菜单项? 例如,我在功能区菜单下有一个复选框。现在我希望当我点…… -
关于.net:WCF REST WebInvoke UriTemplate
WCF REST WebInvoke UriTemplate & https Issue 我的 WCF 服务使用 WebInvoke 属性并使用 httpGetEnabled。 1234567 [OperationContract] [WebI…… -
如何更新用 CursorPosition 插入的字符 (C/Windows API)
How to Update Characters Inserted With CursorPosition (C/Windows API) 在 CODELIGHT 上使用 C 和 MinGW 编译器。 我正在尝试制作一个简单的 ASCII 游戏…… -
关于保持地址不变的 c:gcc 命令?
gcc command for keeping addresses as they were? 有没有办法在每次编译程序时保持所有函数和变量的偏移量不变? 相关讨论 你确定它会随着编译器的每…… -
如何使用 EXECL 从 C 代码执行 Python 脚本?
How to execute Python script from C code using EXECL? 我想知道如何使用 execl(或类似的)从我的 C 代码中执行 Python(或 Lua 等)脚本? 以下是一些"父/子…… -
关于C#:为什么scanf把字符串放到char数组中,直接输入不行?
Why does scanf put a string into a char array while directly inputting it does not work? 这个问题很难命名。 基本上我有一个具有自己结构的数组。 …… -
关于指针:c:将 const char* 读入 sscanf 中的变量?
c: reading const char* into a variable in sscanf? 我正在尝试将字符串/*char 扫描到变量中并将其传递给函数,但我收到错误 "format specifies type 'char…… -
关于C#:如何输入包含\’\ \’的字符串
How to input of a string which contain 'n' in it 我创建了一个自动打字机器人,它模拟用户给出的字符串字符。 我的代码是这样的: 1234567891011121…… -
关于 c :Cannot execute binary error on an Intel Xeon Phi
Cannot execute binary error on an Intel Xeon Phi 我有一个可以在我的机器上本地编译和运行的 C 代码。 但是,当我尝试使用 icc 和 -mmic 标志进行编译并…… -
澄清 C 中指针的左值、右值行为
Clarification over lvalue , rvalue behaviour of pointers in C 1234567891011121314151617 #include<stdio.h> int main(){ int i = 1…… -
关于 c :Finding Memory Size in Boot without DOS, Windows, Linux
Finding Memory Size in Boot without DOS, Windows, Linux 我正在用汇编 (NASM) 编写一个简单的程序。当引导扇区加载时,它必须以兆字节显示计算机中安装的…… -
关于 c:如何在 gcc 4.9.2 中创建字符串常量?
How can I create a string constant in gcc 4.9.2? 我在带有 GCC 4.9.2 的 Arch Linux 上运行,我在编译以下代码时遇到了问题: 12345678910111213141…… -
关于 c:linux clone() 返回 -1 作为 child_pid
linux clone() returning -1 as child_pid 我有以下程序: 1234567891011121314151617181920212223 #define _GNU_SOURCE#include<sched.h>#i…… -
关于C#:在C99的for循环体之外声明计数器有什么好处吗?
Is there any benefit to declaring the counter outside of the for loop body in C99? 我对 C 很熟悉,最近决定学习 C。我正在学习的教程中经常写这样的 f…… -
关于 c:在 select() 调用的上下文中,连接超时意味着什么
What does a Connection Timeout mean in the context of a select() call 我注意到有时选择返回连接超时设置为 errno,但我不知道它为什么会这样做,它怎么…… -
关于C#:试图理解彼得森算法
Trying to understand the Peterson's Algorithm 我试图理解彼得森的算法,我遇到了这个问题。我追踪了代码并写下了我的观察结果。请检查我的观察,我在正确……