Category: c #
You probably came across the following declaration in C# and wonder what the hell does keyword this do. namespace ConsoleApplication1 { public static class Numbers { public static int AddOne(this …
July 10, 2013
c #, code, compiler, debug, delphi, interpreter / compiler, programming languages, technical, tools / utilities, VMProtect, windows
The VMProtect (www.vmpsoft.com) is a great commercial tool that can be used to protect Win32/64 native programs written by C++ or Delphi. In one of my project, I use …
April 16, 2013
algorithms, beginner, c #, code, code library, floating point, implementation, math, optimization, programming languages, tricks
Mathematical function log10can be quite time consuming. If it is not available, for some languages such as VBScript, you have to compute it base on the fact. and therefore, we …
In , the readers would find that it is illegal to put a return statement in the finally block. Here, we will conduct experiments to check if the finally block will work …
Unlike Delphi, the string in C# is type of object. Therefore, you can reference the Length property to obtain the length of the string. However, when null value is …