Graham
Graham
Ah good, I wasn't sure what would happen if you referenced a variable containing "\<" and stuff like that. I don't remember what is possible in vb's xml syntax
Just to make sure I understand, I assume you mean that methods already returning integers (floor, ceiling, truncate, round) don't need an additional round to be added?
Thanks for report. I think this might either be a bug in, or be caused by a workaround for a bug in, the roslyn simplifier. I'll try to repro and...
Thanks both. From the slightly broken input (sub) I assumed the Web converter was used here to convert a quick snippet. It only references a few core dot net libraries,...
Hi, thanks for getting in touch. There aren't currently any options for this, but I understand and agree with the sentiment - the output looks dreadful when sprinkled all over...
Seems like a known build issue separate from the converter: https://stackoverflow.com/questions/52182158/vs-15-8-2-broke-build-tools-missing-runtimeidentifier In general though to prevent this kind of nightmare, move the crucial dlls you need into a folder called...
Just a word of caution to anyone trying to implement this: the given example is a special case in two ways: * It's within a method * The containing statement...
I think the code here tries to solve a similar problem for namespaces declared with multiple casings. You can see there how it was pretty awkward in that case because...
Minimum: Add the same initialization to all bottom-level constructors (i.e. which don't pass on to another of the type's constructors). Nice to have: Try to create a new method or...
Thanks, that sounds quite straightforward to implement. So when there's a base class it's presumably: 1. Base fields (in declaration order) 1. Base constructor 1. This fields (in declaration order)...