Special naming conventions in the Visual Studio debugger
Question:
Where can I find information about the special display conventions used by the Visual Studio debugger for certain types, methods, fields, and local variables?
Answer:
Note on undocumented implementation details:
These naming conventions are undocumented implementation details of the compiler and may change without notice. However, for educational purposes we provide some insights based on the current implementation.
Special names for specific scenes:
Temporary variable type value:
Additional special names for constructs generated by special compilers:
Pattern to generate special names:
The common mode is: P
For example, a local variable created for the iterator's current value would be named "PC__current".
The above is the detailed content of How Does the Visual Studio Debugger Display Special Types, Methods, and Variables?. For more information, please follow other related articles on the PHP Chinese website!