You can use the BitConverter class to get a hex representation of a string of bytes. For example: 1 2 3 4 byte [] someBy...
Read More
Delegate Types vs. Delegate Instances
In C#, the idea of a delegate is that you create an object that refers to a method. This object can be thought of as a sort of pointer t...
Read More
Delegate Invocation Syntax
n C#, you typically invoke a delegate by using the variable referring to the delegate instance as if it were a method. For example, in the ...
Read More
C# Backpropagation Tutorial (XOR)
I’ve been trying for some time to learn and actually understand how Backpropagation (aka backward propagation of errors ) works and how ...
Read More
C# Prevent Reflector from Decompiling
This is a simple way to protect your application from any so-called “cracker”, without involving obfuscation. Remember that this works o...
Read More
C# BigInteger – Working with Large Numbers
Working with large numbers was always a problem for any programmer – no one enjoys doing math operations using numbers stored in arrays, b...
Read More
Windows 8.1: How to use Visual States in your XAML App
There’s no question that XAML’s résumé has a few items in bold. It’s ability to data bind sets it apart from any other technology. It...
Read More
Every Programer do This
Every Programer do This Every programer make one program Which is Hallo World Program in her 1st Day in programing using System; using ...
Read More
There Are Only 2 Roles of Code
All code can be classified into two distinct roles; code that does work (algorithms) and code that coordinates work (coordinators). The...
Read More
Observation pattern in C#
Observer design pattern in the most common used pattern in software world.Infact,in the real world also,there are many instances where w...
Read More
Subscribe to:
Posts (Atom)