Coding
Lifted Operators question
As a heads up I’m a C# newbie here coming from a Java background. Can someone explain this code to me: int? a = null; int b = 10; a = a + b; //a Read more…
As a heads up I’m a C# newbie here coming from a Java background. Can someone explain this code to me: int? a = null; int b = 10; a = a + b; //a Read more…
I’ve been trying to use an example from stackoverflow in my code to pull files from my github repo (reason why I’m not using Octokit for that is some files exceed the 100MB max file Read more…
I finished my first semester of C# coding lessons and i believe covered a somewhat large area of C#.So i would really like it if you could recommend me ideas for projects/exercises to do in Read more…
I have a 8bpp bitmap with a custom 256 color palette where certain (two) colors in a palette (pink, green) indicate transparency. I could use the MakeTransparent(color)method (twice for each color) on a bitmap but Read more…
Background: I was recently hired to develop C# ETL code (or for transferring data) in Visual Studio. However, my only experience with programming is one introductory programming class in Java that I took in college Read more…
I want to build a personal portfolio/blog site with asp.net core and reactjs are there any tutorials for this that could help me. I’m a complete beginner in webdev. (also not sure what database to Read more…
More and more recently I’ve found myself running into situations where I need to add in seemingly redundant collections of generic constraints onto methods and classes, or have to add constraints for generic types I Read more…
Hi! I’ve set up a simple plugin system for my application that works by a plugin author compiling a Dll and placing it in a Plugins folder. E.g:This works just fine for me when I Read more…
To summarize I was trying to make a number guessing game where two players take turns guessing the random number. The limit the random number can be, like it can’t go over a certain number, Read more…
I used to do web with nodeJS & React, for quite some time so I would classify myself as pretty skilled with React. However before web I was a Unity developer for a long time Read more…