.Net
Building a machine learning model with SQL Server, ML.NET and C#
Nice work Luis. Thanks. C# devs null reference exceptions source
Nice work Luis. Thanks. C# devs null reference exceptions source
If I have a class like this public class Booking : IBooking { public IDBRepository DBRepository { get; set; } public void Purchase(int Amount, string ProductName, string ProductNumber) { TransactionData transactionData = new TransactionData {amount Read more…
Tldr: How do I go about creating a web crawler that runs iteratively and concurrently? I’m trying to write a web crawler in c# for my learning. I originally was going through a recursive BFS Read more…
Hello everyone. When using Visual Studio (2019) and .NET Core/.Net 5, a console will when you debug the project: Example. I also like to use Windows Terminal. Is there a way to open this console Read more…
Hi I tried to code my first Xam Form but when i try to debug my Android app the emulator start (also de Android) but the app doesnt start. Maybe is coz i code in Read more…
Hi, I hope everyone is having a blessed day. I am very new to C# (and programming, in general), having coded for a bit over a month and a half with it. Tutorial hell is Read more…
no comments yet Be the first to share what you think! C# devs null reference exceptions source
I’ve got a dictionary in which i’m storing instantiated structs. Server.cs // Create an empty list of shards public static Dictionary<Guid, Shard> shards = new Dictionary<Guid, Shard>(); // Shard struct public struct Shard { public Read more…
I’ve made a few mad libs projects for fun, and I want to share them with some people. I’m using Visual Studio 2019, if that’s important (im new to c#, sorry) Normally when you debug Read more…
When should I use it? Is it good practice to use it? I have searched this question and the only thing I find is: bool b = exp?true:false; But why don’t just write this? bool Read more…