-
Re: What is default accessibility modifier for struct Point in my code?
Both private. Remove the Extension Method that won't compile and reflect in ILSpy (Alt-Shift-R) to confirm this.1 · -
Re: How to know the number of times a subquery executes?
It is simply counting the number of times the count extension method is being called, so if your query or code does not include any calls to that method, it obviously will not do anything.1 · -
Re: How to know the number of times a subquery executes?
If you want to extend this to count various methods you can define an extension method. For example, if you want to count the number of comparisons as well as the number of times max and length are e…1 · -
Re: Cannot prevent debugger breaks when running try / catch.
This is a compile-time error. Try try{ int x =0; Console.WriteLine(1 / x);}catch (Exception e){ Console.WriteLine(e);}1 · -
Re: Output is not being rendered correctly.
I think I have discovered the problem which is the 'space' in the original query (which I copied and pasted) is not actually a standard space. Hex dump shows it as C2 A0 rather than 20. Whi…2 ·