Willem
@Willem@kutsuya.dev
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on Anon tries programming in Java 4 days ago:
On that last note, can’t you use the explicit interface implementation in C#?
e.g.
public class SampleClass : IControl, ISurface { void IControl.Paint() { System.Console.WriteLine("IControl.Paint"); } void ISurface.Paint() { System.Console.WriteLine("ISurface.Paint"); } }
- Comment on How did Android's update support become so inconsistent? 1 year ago:
Like a lot of people already mentioned, it’s because of hardware driver’s mostly. But let’s not forget Microsoft has this figured out mostly already, since pretty much all drivers that have a version for Vista 64bit (2006) works on Windows 11.
Android is catching up a bit though, they split the update process and you now receive security updates almost directly from google since Android 10.