GlitchYourDevice
public WPF and Console project in same sulution
I have a problem when trying to publish self contained WPF project that has a class library and a consoleApp in dependencies. I can publish as framework dependent and portable but that is the only option that works.
3 replies
insert mac addresses into a table of sqlite db
I’m trying to insert all Mac addresses into a table of SQLite that has a column Id not null primary key auto increment and a column MacAddress text not null. I want to insert all mac addresses that starts with 00:1A:79 and just uppercase letters. So in total that would be 16 777 216 macadresses. If I do it in c# it takes to much time. And if I do it directly in db browser for SQLite it works to paste all Macaddresses in and it works to execute. With no errors. But after the execution and when I’m trying to write changes the program (db browser for SQLite ) is not responding.
so how should I do this. Should I insert 1000000 MAC addresses each time in db browser or should I do something else?
12 replies
❔ exercise without datetime
Write a program (without using DateTime) where the user can enter a time in a form
of two numbers, hours (0-23) and minutes (0-59). There, the user can enter a third number (i
minutes of unlimited size) to be added to the current time. The program will then
display the new time correctly in hh:mm format.
20 replies