Ganbarukamo41

Results 18 comments of Ganbarukamo41

What would happen if somebody gets rejected? would they get re-promoted after a certain time or wait for manual promotion?

> Daylight saving time What if we store [one of those](https://en.m.wikipedia.org/wiki/List_of_tz_database_time_zones) instead of explicit UTC offset so the bot can account for DST as well?

Seems to be pretty similar. Wonder if the decay duration can be set when the warning is issued on a per-case basis though, rather than having it as a global...

This would be incredibly useful when reporting problems; I do use non-English UI language, but it'd be very useful if the output language could be specified by environment variable or...

While we're at it.... could we perhaps allow pointer types to be passed when T is constrained to be `ref struct`? https://github.com/dotnet/runtime/issues/13627 suggests that the only issue with allowing pointer...

Not quite. I meant something like `Example` where the method definition is `void Example(T value)`.

> You can't, because pointers are not objects (unlike other primitives and structs), so they can't be boxed: `object Example(T value) { return (object)value; }` is just not possible with...

> If you're using `record struct Record` I can see how that would work as structs would have default ctors - I suppose it's using private setters via reflection to...

👋 I have the test codes ready. However this requires some work on the logger side to make the output readable by the test framework; currently the logger only writes...

@AidanTheDeveloper I am not completely sure why it's not happening on your side, but for me this is enough to reproduce the warning from an empty project: ```cs using System;...