New: c-sharpAll contenthive-129948hive-196917krzzansteemhive-183959hive-180932hive-166405photographyhive-185836uncommonlabhive-150122lifehive-183397hive-144064bitcoinhive-188619krsuccesshive-139150hive-103599hive-124908hive-101145hive-109690hive-184714hive-180301TrendingNewHotLikersto-the-sun (64)in hiring • 4 years ago[HIRING] The Visualizer Arcade: create a mini-game module for my Unity gameI'm looking to put together a sort of arcade in my Unity game, which would be a selection of fun little mini-games to play. The job I'm hiring for here is to create one of those games. The game…aawisdom.com (42)in visual-cplusplus • 5 years agoThe Pain of Visual Studio Languages and DLL Files of MicrosoftSo discouraging to have my programming application not work on other computers but only on the computer I programed. This is a famous problem with programs born from Microsoft Visual Studio. The…teamhumble (74)in steemhunt • 5 years agoBlazor - Build client web apps with C#Blazor Build client web apps with C# Screenshots Hunter's comment you still making .net stuff? okay, cool, maybe you wanna start expanding out to make client web apps with the…joel1220 (48)in ulog • 6 years agoULOG: #20 día de programar hola amigos de steemit unos días de estar inactivo , les vengo a compartir mi ulog del día de hoy , es curioso pero me la pase encerrado en casa porque el clima esta muy brusco y lo mejor es…justyy (82)in programming • 6 years agoC# Questions from Job AgencyXXX:platur (34)in dlive • 7 years agoExample Video - Let's create a Game with Unity3D! Part 1The main tutorial you can find here: English: German: My video is at DLiveplatur (34)in programing • 7 years agoStarting GameDev TutorialThis is the start of my Unity Tutorial series!jonesc (29)in utopian-io • 7 years agoMicrosoft/CNTKChange profiler details output format to be chrome://tracing Enable per-node timing. Working example here per-node timing creates items in profiler details when profiler is enabled. usage in…slawas (35)in programming • 7 years agoC# language: AsynchronousThis lesson will require knowledge from the previous one, so if you do not know what concurrency is, go to the concurrency lesson and then come back to this one. Today about asynchronous.…slawas (35)in programming • 7 years agoC# language: Concurrency(multithreading)Typically, applications or programs on a computer or phone perform more than one operation, this is called concurrency, we will first discuss the basics of concurrency, ie threads and tasks, and in…slawas (35)in programming • 7 years agoC# language: LINQLINQ is a query language used for quickly and efficiently creating queries for objects, collections, arrays, databases, generally speaking, various objects, LINQ is similar to SQL, first we enter a…slawas (35)in programming • 7 years agoC# langauge: Enumerators and iteratorsThe enumerators and iterators in general are used to move after the elements of the collection, we will start by discussing the enumerations. Enumerators Enumerator class is used for…slawas (35)in programming • 7 years agoC# language: lambda expressions and anonymous methodsToday, quite a simple topic, we will start with lambda expressions, these are unnamed methods used together with delegates. Lambda expressions Example of lambda expression: delegate int…slawas (35)in programming • 7 years agoC# language: Generics typesI will say a little today about generics types, they are similar to the lists but are a bit different in that the lists are already generics types ready today, we will look into the tripe lists and…slawas (35)in programming • 7 years agoC# language: ref, out i params modifiers parametersI do not know if you were wondering, but the variables sent as parameters to the method are copies because the method will not affect the sent variable and you may wonder if you can do so that the…slawas (35)in programming • 7 years agoC# language: Data serializationHi, today about the serialization in the previous lesson we was saving down a line by line the data that could have been saved in a much simpler way, eg save the entire data object to the stream for…slawas (35)in programming • 7 years agoC# language: ExceptionsHi, today I will explain what are the exceptions, you meet with them every time when some error pops up, if you want to know more then I invite you to read. The exception occurs, for example, if…slawas (35)in programming • 7 years agoC# language: File operationsIn this lesson, I will speak a bit about reading and writing files in C # because you will surely write in the future some program in which you will have to save some data, eg a game in which you…slawas (35)in programming • 7 years agoC# language: 16. Dictionary part 2Let’s finish the previous part of the lesson in C # about dictionaries today, we’ll do a full dictionary I promised in the previous lesson that I will describe more of the dictionary functions…slawas (35)in programming • 7 years agoC# language: 16. Dictionary part 1Hi, today as part of the exercises we will do a dictionary project that uses a lot of collections and lists, but the dictionary list in C # looks a bit different, we’ll get to that, but this time we…