Triufelis
✅ Blazor vs Razor Pages
I'm just i guess a bit hesitant on learning JS. As i have heard a lot of scary things about it and c# is what i'm used to. But i guess it is time to look into JS.
Last question. For the project using C# web api and JS for frontend. Would you still use Visual Studio?
24 replies
✅ Blazor vs Razor Pages
Would you say it is better to have web developement skills for potentially finding a job or desktop application?
I am studying software systems (which is basically computer science, just a different name) and we don't really focus in web development. But in my eyes it has way more potential and more need as everything is on the web these days.
Sorry if the question doesnt make sense. You sound like a person that has some experience and the insights would be valuable. Thanks.
24 replies
✅ Blazor vs Razor Pages
I'm planning on personally using it. But learning for a future job is always in the back of the mind.
Could i ask why blazor isn't really adopted in the real world?
Since learning skills for a future job is at the back of the mind. Maybe i should build it using a different framework? Such as WinForms or anyother framework?
24 replies
Connect together [Answered]
Not necessarily. With the numbers im trying to do the exact same thing. I read from the first file until i encounter the first uncopied number from the second one. Then print from the second one until i encounter the next number from where i left off in the first. And etc.
31 replies
Connect together [Answered]
Alright. I will try to make myself a bit clearer. I have two files. In one file, lets call it File1.txt there is a line of text. f.e. My name is John. In the second file, lets call it File2.txt there's also a line of text. F.e. Is this my name. I need to copy the first file until i find the first match. So it would go like this My => name => is(this is the point where i need to switch files, as i have found a duplicate) =>is => this => my => name(since the second file ended i now need to print the rest of file1) =>John
31 replies