Dzamir

Stories kicked by Dzamir

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

Learn the new NUnit 2.4 Constraint-Based Assert Model (blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 9 months ago

Instead of using a different Assert method for each different type of assertion (e.g.: Assert.AreEqual() for equality comparison, or Assert.IsTrue() for boolean evaluation), the new Constraint-Based Assert Model introduced in NUnit 2.4 utilizes only one Assert method named Assert.That(). read more...

2 comments |category: |Views: 70

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

Leaky Functions\Barrel of Bugs(blogs.msdn.com)

submitted by Coldduck9Coldduck9(470) 5 years ago

Create higher quality code with immutable classes. read more...

1 comment |category: |Views: 1

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

Ray Tracing in C# 3.0(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 5 years, 1 month ago

C# PM Luke Hoban has a wonderful post on Ray Tracing in C#. read more...

add a comment |category: |Views: 684

tags: another

6 "Pointers" on Debugging Unmanaged Code(atalasoft.com)

submitted by loumfloumf(120) 5 years, 3 months ago

What you need to know to find bugs in unmanaged code. Tips on using the debugger and other tools, reading assembly, and diagnosing problems. read more...

add a comment |category: |Views: 6

tags: another