Yegor Stepanov

Results 79 comments of Yegor Stepanov

@bakermo I think there should be `EscapeSpecialCharacters` too. Is it should escape all characters? `\t` too? Try run this (`\a` is a sound character, and it makes sounds!): ```C# public...

@bakermo My opinion is exactly the same as yours. Separate them. I don't remember any other markdown-specific mistakes in the output, `escapePipe` is enough currently. By implementing it you will...

PR already exists: #1911

@mawosoft Sorry for stealing the issue :) > BDN doesn't check if the given MethodInfos belong to the given Type and will convert the methods anyway. Сheck was added. >...

Hi Adam, no problems, I will gladly take the time for this.

Code ```C# public class Program { static int benchmarkNumber = 0; static string[] ARGS = null; static string[] ARGS = Array.Empty(); static void Main() { Console.WriteLine("null:"); RunType(null as Type); RunTypes(null...

A real PR output (without test numbers): ![image](https://user-images.githubusercontent.com/19392641/186775157-b63f3346-3d9f-4ece-bd82-19a5a2810fbd.png) I like multiline with 2 spaces for invalid types/methods.

@dpuza-formativ Сan you share the code? I tried reproduce it, but: ```C# BenchmarkRunner.Run(); //Gives: //Program containing Benchmark method MySuperBenchmarkMethod has incorrect access modifiers. //Declaring type must be public. ``` ```C#...

@ltrzesniewski It looks better then enum and no compatibility issues. I started with flags enums, confused OR with AND :) and I don't like that they look different: ```C# [HideColumns("Mean",...

I wanted to do something like this: ```C# public static class Column { public static readonly IColumn Mean; //const not working too } [HideColumns(Column.Mean)] ``` but attribute restrictions are very...