简体   繁体   English

在c#“ C:\\\\ WINDOWS \\\\ system32 \\\\ vsjitdebugger.exe -p%ld -e%ld -g%ld \\”中的此命令是什么

[英]what is this command in c# “C:\\WINDOWS\\system32\\vsjitdebugger.exe -p %ld -e %ld -g %ld\”

i came across this command, i want to know what this command for, and what are the options for? 我遇到了此命令,我想知道此命令的用途,以及选项有哪些? i am looking for brief introduction & any source links for basic explanation. 我正在寻找简要介绍和基本解释的任何源链接。

Thanks, 谢谢,

This is not a C# command is just a windows program. 这不是C#命令,仅仅是Windows程序。 Specifically is the Visual Studio Just In time Debugger. 特别是Visual Studio即时调试器。 The -p %ld -e %ld -g %ld are arguments that are passed to this program. -p%ld -e%ld -g%ld是传递给该程序的参数。

Run vsjitdebugger.exe /? 运行vsjitdebugger.exe /? to understand what this arguments are. 了解这个论点是什么。 Google the program name(sdjitdebugger.exe) if you need more info. 如果您需要更多信息,请使用Google程序名称(sdjitdebugger.exe)。

VSJITDEBUGGER is the Visual Studio Just-in-time debugger. VSJITDEBUGGER是Visual Studio即时调试器。 The command you're seeing in your source code is attempting to run it with some specific arguments: 您在源代码中看到的命令正在尝试使用某些特定参数运行它:

vsjitdebugger
    -p <processId>
    -e <??>
    -g <??>

I don't know what the -e and -g arguments are for, I've never used them. 我不知道-e-g参数的用途,我从未使用过它们。 The -p specifies a process ID to attach the debugger to. -p指定将调试器附加到的进程ID。

The "%ld" sections of the string are printf-formatting so you can insert the process ID (and other arguments) before running the command. 字符串的"%ld"部分为printf格式,因此您可以在运行命令之前插入进程ID(和其他参数)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用C#执行vsjitdebugger.exe - How to execute vsjitdebugger.exe using c# asp c中的结构化数据JSON ld# - Structured Data JSON ld in asp c# 权限错误 C:\WINDOWS\system32\config\systemprofile\.EasyOCR in IIS app which uses Python EXE - Permission Error C:\WINDOWS\system32\config\systemprofile\.EasyOCR in IIS app which uses Python EXE WebClient下载-“拒绝访问路径&#39;c:\\\\ windows \\\\ system32 \\\\ inetsrv \\\\ MyPrintManager.exe&#39;” - WebClient Download - “Access to the path 'c:\\windows\\system32\\inetsrv\\MyPrintManager.exe' is denied” C#错误Windows启动时,对路径&#39;C:\\ Windows \\ system32 \\ Com \\ dmp&#39;的访问被拒绝 - C# Error Access to the path 'C:\Windows\system32\Com\dmp' is denied When Windows Startup 在C#中访问System32 \\ config \\ SYSTEM配置单元 - Access System32\config\SYSTEM hive in C# 使用C#从c:\\ windows \\ system32删除文件时遇到问题 - Trouble deleting a file from c:\windows\system32 using C# c#winforms GetCurrentDirectory返回C:\\ WINDOWS \\ System32 \\设计错误 - c# winforms GetCurrentDirectory returns C:\WINDOWS\System32\ design error 通过total-commander在C:\\ Windows \\ system32中打开c#文件夹 - c# open folder in C:\Windows\system32 via total-commander 如何在 C# 中获取 Windows\system32\config\systemprofile\AppData\Local\ 文件夹路径? - How to get Windows\system32\config\systemprofile\AppData\Local\ folder path in C#?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM