schalkvanwyk

Stories submitted by schalkvanwyk

Mini IOC and Static gateway logging - Andrew Stopford's Weblog(weblogs.asp.net)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 8 months ago

Quickly add logging using "static gateway logging example" and a mini IoC. read more...

add a comment |category: |Views: 12

tags: another

Debug an executable without using Attach to Process(blogs.msdn.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

Debug an executable that isn’t a part of a Visual Studio project without using Tools – Attach to Process. You can attach to the exe before it even starts, helps debugging those bugs in startup... read more...

add a comment |category: |Views: 40

tags: another

Test your web design in different browsers(blogs.msdn.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

Online tool to see what your website looks like in various browsers. http://browsershots.org read more...

add a comment |category: |Views: 5

tags: another

List Filter and Map in C#(dotnet.org.za)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

Shows how to implement the filter and map functions on a class that implements IList using C#. read more...

add a comment |category: |Views: 318

tags: another

SQL Tips: Joining to the Next Sequential Row(sqlteam.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

How to compare a table row with its immediate sibling using TSQL. read more...

add a comment |category: |Views: 9

tags: another

How to: Use a Dictionary to Store Event Instances (C# Programming Guid(msdn.microsoft.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

Describes using accessor-declarations to store a number of events in a dictionary instead of allocating a variable for each event. read more...

add a comment |category: |Views: 45

tags: another

BitWise Operations in C#(c-sharpcorner.com)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

A good overview of the various bitwise operations. read more...

add a comment |category: |Views: 42

tags: another

The implementation of Flags using bitwise operators(dotnet.org.za)

submitted by schalkvanwykschalkvanwyk(1335) 3 years, 9 months ago

Great overview of how to use bitwise operators combined with the FlagsAttribute. Also explainse the use of the elusive tilda operator (~) - always wanted to know how to remove a bit flag from multiple set flags. read more...

add a comment |category: |Views: 124

tags: another