inandrea

Stories kicked by inandrea

UDPSender: Sending UDP messages in C#(coders4fun.com)

submitted by DzamirDzamir(245) 4 years, 7 months ago

A very simple to use class that allows to send UDP message in c#. read more...

1 comment |category: |Views: 891

tags: another

C# Threads using anonymous methods(coders4fun.com)

submitted by inandreainandrea(115) 4 years, 8 months ago

Short "how to" talks about anonymous methods in c# to simplify a thread creation. read more...

add a comment |category: |Views: 54

tags: another

Creating a PHP 5 Extension with Visual C++ 2005(blog.slickedit.com)

submitted by jasonjason(175) 4 years, 8 months ago

This article describes the steps to create a custom PHP extension DLL for the Windows platform. The Zend API documentation that comes with PHP 5 on Windows (see php_manual_en.chm) does a good job explaining how to write extension methods, parse method parameters, and return values. But there is not currently a good step-by-step tutorial on how to get your first extension project up and running on Windows. The aim of this article is to fill that gap. read more...

add a comment |category: |Views: 28

tags: another

Deprecated Methods(coders4fun.com)

submitted by DzamirDzamir(245) 4 years, 11 months ago

Deprecate a method with the obsolote attribute. read more...

3 comments |category: |Views: 15

tags: another

How to save a SQL Blob in C#(coders4fun.com)

submitted by DzamirDzamir(245) 4 years, 11 months ago

The blob is a binary field so, how can we save it with a textual SQL string? read more...

add a comment |category: |Views: 26

tags: another

IDisposable – 1, 2, 3, …(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 4 years, 11 months ago

IDisposable is one of these beasts. Considered to be common knowledge and yet regularly ignored. A well documented pattern and yet occasionaly improperly applied. And this is just the beginning; the finer details are lost more often than not. read more...

4 comments |category: |Views: 13

tags: another

C++ Timer(coders4fun.com)

submitted by DzamirDzamir(245) 4 years, 11 months ago

How to use the Windows API to create and manage a timer in c++. In the article is explained how to use a callback function and how to use the window procedure to intercept the OnTimer event. read more...

2 comments |category: |Views: 213

tags: another

Evolution of a C# Query—Step by step from C# 1.1 to LINQ(blogs.msdn.com)

submitted by Coldduck9Coldduck9(470) 5 years ago

This article takes you step-by-step from C# 1.1 to LINQ. read more...

2 comments |category: |Views: 5

tags: another

Optimized access to Bitmaps(coders4fun.com)

submitted by DzamirDzamir(245) 5 years ago

How to read and elaborate sequence of bitmaps without using .NET functions, saving tons of processor cycles. read more...

1 comment |category: |Views: 10

tags: another

Calculate CRC C#(coders4fun.com)

submitted by inandreainandrea(115) 5 years ago

This article is about a class that calculates different types of crc codes: crc-8, crc-12, crc-16, crc-32 and custom types of crc codes. This class has a static function that generates non standard polynomys. read more...

add a comment |category: |Views: 3402

tags: another

Convert a C# Object to a SQL string(coders4fun.com)

submitted by DzamirDzamir(245) 5 years ago

A static method that converts C# standard objects and types to a SQL string, e.g. a byte array is saved as a blob. read more...

2 comments |category: |Views: 58

tags: another