angwin

Stories kicked by angwin

Ever wondered why there are attributes in XML?(coding-time.blogspot.com)

submitted by invasioninvasion(210) 4 years, 1 month ago

Explanation by the author of XML, I asked him using email. read more...

add a comment |category: |Views: 6

tags: another

Implement your own Parallel.For in C#(coding-time.blogspot.com)

submitted by invasioninvasion(210) 4 years, 1 month ago

Are you interested in threading? How could Parallel.For be implemented? I tried to implement it and it scales well. read more...

add a comment |category: |Views: 56

tags: another

Custom ORDER BY in SQL(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 2 months ago

A tip for custom ordering at database layer. read more...

add a comment |category: |Views: 506

tags: another

How to test private fields and methods using NUnit(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 4 months ago

Testing internal fields and methods from separated friend assembly. read more...

add a comment |category: |Views: 60

tags: another

Regular Expressions in .NET(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 5 months ago

.NET contains a very useful class for text processing - a Regex class. read more...

add a comment |category: |Views: 14

tags: another

Google Charts API: an ASP.NET 2.0 Server Control (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 5 months ago

I decided to code up a small ASP.NET Server Control that uses the Google Chart API to put simple line graph charts on a page. This control exposes a subset of the Google Chart API to create Line Graph charts. read more...

1 comment |category: |Views: 200

tags: another

Currency Format Depending on Culture(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

In the following example I want to demonstrate a very simple method how to change the currency format in your application elegantly and dynamically. read more...

add a comment |category: |Views: 9

tags: another

Simple Serialization and Deserialization in C#(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

This post shows how to convert any .NET object to stream of bytes that can be saved on a disk, sent by a protocol via internet etc. read more...

add a comment |category: |Views: 30

tags: another

Boxing Mystery in Overloaded and Overridden Method(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

Recently I have produced a code with strange behaviour in my real C# project. Look at the code and try explain it! read more...

add a comment |category: |Views: 0

tags: another

Syntax-Highlighted Code from Visual Studio as HTML(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

Very useful Visual studio add-in for bloggers. read more...

add a comment |category: |Views: 4

tags: another

Launch NUnit Tests directly from Visual Studio and Debug(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

Short guide how to launch NUnit tests directly from Visual Studio and using debugger while tests run. read more...

add a comment |category: |Views: 28

tags: another

User Defined Aggregate Function in SQL using CLR(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

An example how to write a simple aggregate function in C# and included it among built-in functions in SQL Server. read more...

add a comment |category: |Views: 84

tags: another

OpenGL in .NET(dotnet-enthusiast.blogspot.com)

submitted by angwinangwin(120) 4 years, 6 months ago

Introduction to programming OpenGL using C# in .NET. read more...

add a comment |category: |Views: 12

tags: another

Tips for Blogging about .NET(brennan.offwhite.net)

submitted by offwhiteoffwhite(975) 4 years, 6 months ago

More developers should be blogging as long as they write well and maintain great blogs. Here are tips to do that. read more...

1 comment |category: |Views: 3

tags: another

Implementing a simple Silverlight Control(c-sharpcorner.com)

submitted by salimsalim(780) 4 years, 6 months ago

I am sure that many of you have read about Silverlight, the latest offering from Microsoft promising the ability to deliver rich interactive applications and media. Silverlight 1.1 Alpha has just been released and with this in mind, I decided to download all the tools required to start using Silverlight. To be honest, I have not spent much time looking into Silverlight 1.0; I just couldn't bring myself to start coding heavily in JavaScript. Version 1.1 gives the ability to perform the 'behind the scenes' coding in languages such as C# and VB.NET (plus others). read more...

add a comment |category: |Views: 3

tags: another