We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Used: 4.9.0-3.24054.13
Steps to Reproduce:
runtimes\\linux-x64\\lib\\net9
System.Private.CoreLib.dll
MethodDebugInformation
get_IsBit64Process
get_NewLine
Source code: https://github.com/dotnet/runtime/blob/1e5bae2e56180897c95ac3f9adaa5609d14d20b3/src/libraries/System.Private.CoreLib/src/System/Environment.cs#L205
public static bool Is64BitProcess => IntPtr.Size == 8;
public static string NewLine => NewLineConst;
Question: Why get_IsBit64Process has no document while get_NewLine does?
The text was updated successfully, but these errors were encountered:
@tmat @jaredpar @ericstj @sbomer could you help to answer my question above? Thanks!
Sorry, something went wrong.
@huangmin-ms
Go to MethodDebugInformation table, the associated document for get_IsBit64Process is null but it is not null for get_NewLine
What tool are you using here?
@huangmin-ms Go to MethodDebugInformation table, the associated document for get_IsBit64Process is null but it is not null for get_NewLine What tool are you using here?
dotpeek. ILSpy shows the same result.
Document 30000000 does not exist.
Can repro with a simple example:
class C { public const string NewLineConst = "\r\n"; public static bool P1 => IntPtr.Size == 0; public static string P2 => NewLineConst; }
@tmat do you understand this behavior?
No branches or pull requests
Version Used:
4.9.0-3.24054.13
Steps to Reproduce:
runtimes\\linux-x64\\lib\\net9
and findSystem.Private.CoreLib.dll
.MethodDebugInformation
table, the associated document forget_IsBit64Process
is null but it is not null forget_NewLine
Source code:
https://github.com/dotnet/runtime/blob/1e5bae2e56180897c95ac3f9adaa5609d14d20b3/src/libraries/System.Private.CoreLib/src/System/Environment.cs#L205
Question: Why
get_IsBit64Process
has no document whileget_NewLine
does?The text was updated successfully, but these errors were encountered: