Lines of code Counter [C#]

Posted on

Lines of code Counter Version: 1.0 Requirements: Windows Limitations: No limitations As the title say. This is a small C# software that helps count the lines of code, comments, blank lines from a file or directory (recursive). It is possible to state which files to look into. For example: *.cs or *.java etc.. Better than […]

GA AI Tetris [C#]

Posted on

  GA is a way to learn a population by generations, better understand a problem and working towards a goal. This by giving a small fragments of the both parents dna (information/mutation) into the childs “dna”. For each new generations, they will given more understanding of the problem and thereby make better actions towards the […]

Create DLL from WSDL in C#

Posted on

How to generate a DLL file from a WSDL in C# As this was hard to get out I type this down if any other search for this. I first of started to question how to turn a WSDL to a DLL, but then found out this must be done in 2 steps. Generate file.cs […]

C# Application that checks for new versions

Posted on

Normally when I create some application and know that users will use it a lot, there is a underlying need of making sure the end user is using the latest version. To show one way of making this possible is using xml files at the server side, describing the changes and where to fetch new […]