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
File: https://github.com/dotnet/roslyn/blob/master/src/Compilers/Core/Portable/CvtRes.cs
Issues:
using BYTE = System.Byte;
type BYTE = System.Byte
open System.Byte
sizeof(DWORD)
UnknownNode
sizeof<DWORD>
new RESOURCE() { HeaderSize = cbHdr, DataSize = cbData };
do { sb.Append(curChar); curChar = fhIn.ReadChar(); } while (curChar != 0);
stream.Position <- stream.Position + 3 & ~3
ERROR UnknownPrefixOperator "~"
raise new ResourceException(CodeAnalysisResources.CoffResourceInvalidSectionSize)
Probably more, I'll edit as needed and might fix some of them.
The text was updated successfully, but these errors were encountered:
Link to sample at cs2fs online: here
Sorry, something went wrong.
No branches or pull requests
File: https://github.com/dotnet/roslyn/blob/master/src/Compilers/Core/Portable/CvtRes.cs
Issues:
using BYTE = System.Byte;
should probably betype BYTE = System.Byte
instead ofopen System.Byte
sizeof(DWORD)
currentlyUnknownNode
should besizeof<DWORD>
stream.Position <- stream.Position + 3 & ~3
->ERROR UnknownPrefixOperator "~"
raise new ResourceException(CodeAnalysisResources.CoffResourceInvalidSectionSize)
, which doesn't compile as parethesis are required (or <|)Probably more, I'll edit as needed and might fix some of them.
The text was updated successfully, but these errors were encountered: