News in the Category: C# Subscribe to the rss of this category.

Total posts: 1283 | Sort by Views | Sort by Hits

jTypes: Under the Hood

The Code Project Latest Articles, June 14, 2013
Views: 235 | Hits 42

A detailed look at how jTypes compiles C#-like object definitions into prototype-based instance matrices....

Caller Info Attributes in C# 5.0

The Code Project Latest Articles, June 13, 2013
Views: 218 | Hits 50

Caller Info attributes in C# 5.0 and their usage...

USB Block Program in C#

The Code Project Latest Articles, June 12, 2013
Views: 226 | Hits 65

USB block application in C#...

Code Review Checklist and Guidelines for C# Developers

The Code Project Latest Articles, June 5, 2013
Views: 338 | Hits 74

This is a general code review checklist and guidelines for C# developers, which will serve as a reference point for development....

Integrating your applications with MS CRM Online 2011 using C# SDK

The Code Project Latest Articles, June 5, 2013
Views: 192 | Hits 26

This article provides helper code to quickly integrate your applications with CRM Online 2011 using C# SDK....

The Power of Delegates in C#

The Code Project Latest Articles, June 5, 2013
Views: 336 | Hits 84

Document describes about the Delegate in C#.Net and the usage of delegate in different scenarios...

Pushing ETW events through SignalR

Pablo M. Cibraro (aka Cibrax), June 3, 2013
Views: 170 | Hits 26

ETW or Event Tracing for Windows is a very efficient pub/sub built-in mechanism that runs in Kernel Mode for doing event tracing. That implies there is just a little overhead in using this feature com...

How to manage Azure IaaS Programmatically

The Code Project Latest Articles, June 2, 2013
Views: 349 | Hits 24

Learn how to manage windows azure virtual machines (IaaS) using C# code...

Code Review Checklist and Guidelines for C# Developers

The Code Project Latest Articles, May 30, 2013
Views: 311 | Hits 63

This is a general code review checklist and guidelines for C# developers, which will serve as a reference point for development....

Code Review Checklist & Guidelines for C# Developers

The Code Project Latest Articles, May 30, 2013
Views: 466 | Hits 100

This is a General code review checklist and guidelines for C# Developers, which will be served as a reference point while development....

LLBLGen Pro v4.0 feature highlights: Resultset Caching

Frans Boumas blog, May 29, 2013
Views: 195 | Hits 11

This is the second post of a series about the new features in LLBLGen Pro v4.0, which was released on April 6th, 2013. Today I'd like to highlight a new major feature of the LLBLGen Pro Runtime Framew...

Entity Framework Power Tool Tips to View Model (A Feature I Depend On!)

Julia Lerman Blog - Dont Be Iffy..., May 27, 2013
Views: 295 | Hits 52

When defining models with Entity Frameworks Code First and a DbContext class, I find the View Model feature of the Entity Framework Power Tool completely indispensable. Without it, I only *think* I kn...

Using elemMatch in a MongoDB Query

K. Scott Allen, May 27, 2013
Views: 216 | Hits 14

I introduced a latent bug in some code recently while trying to find documents with a specific set of values embedded inside an array. For example, consider the following documents: { "name" : "...

IP Throttling in ASP.NET Web API

Pablo M. Cibraro (aka Cibrax), May 22, 2013
Views: 281 | Hits 40

Some Web APIs use the client IP address to enforce Service Level Agreements such as limit the number of calls in a period of time. The client IP address can be used as a replacement for an authenticat...

MissionControl - A Flexible API for Remote Device Control

MSDN: Coding4Fun, May 13, 2013
Views: 221 | Hits 16

In a race to optimize everything, developers often go to extremes to build software that performs routine tasks. MissionControl is a system that allows users to program a control center that stores in...

Using FusionCharts with C#

The Code Project Latest Articles, May 10, 2013
Views: 437 | Hits 32

This article describes using FusionCharts with C#....

Trying Out Redis via NuGet

K. Scott Allen, May 10, 2013
Views: 292 | Hits 26

From the Redis home page: Redis is an advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. Redis is also ...

scriptcs gets a REPL!

Brendan Tompkins, May 7, 2013
Views: 322 | Hits 22

Hello c# scripters! Before you go further, if you are wondering what all the scriptcs hype is about please check out Scott Hanselmans great post and his new Tekpub video.  Last few days I’ve been work...

Accessing impersonated users details from code behind in C#

The Code Project Latest Articles, May 7, 2013
Views: 260 | Hits 23

This post explains how to access impersonated user's details from code-behind using C#...

Writing Business Objects Using Enterprise Library

The Code Project Latest Articles, May 3, 2013
Views: 456 | Hits 86

How to write business object in C#...

Paging DataGridView in C# using LINQ

The Code Project Latest Articles, May 2, 2013
Views: 329 | Hits 46

Paging DataGridView using LINQ in C#....

Working with Arrays in C#

DotNetBips.com Latest Articles, April 26, 2013
Views: 341 | Hits 51

Arrays are frequently used to store data of the same type. You can use arrays in C# in many different ways. Although single dimensional arrays are most commonly used, other varieties such as multidime...

My Personal Commander Variant

The Code Project Latest Articles, April 20, 2013
Views: 309 | Hits 13

A C#/WPF application for displaying folders on a grid and performing combined functions on them....

Using Preprocessor Directives in C#

DotNetBips.com Latest Articles, April 18, 2013
Views: 413 | Hits 95

C# preprocessor directives are commands that are meant for the C# compiler. Using preprocessor directives you instruct the C# compiler to alter the compilation process in some way. For example you may...

Console (not that kind) Space Invaders

MSDN: Coding4Fun, April 17, 2013
Views: 269 | Hits 25

Today's project is a deceptively simple project that's just fun, for the fun of it. I mean, who doesn't love a good console (as in command line console) game of...Space InvadersProject DescriptionThe ...

When Interfaces are incredibly useful

The Code Project Latest Articles, April 16, 2013
Views: 371 | Hits 90

This is an alternative for "Interfaces in C# (for beginners)"....

Simplifying Grid Summaries Calculation with the Help of Expressions

The Code Project Latest Articles, April 15, 2013
Views: 293 | Hits 24

This article describes a C# library that allows to replace your summaries calculation code with expressions, e.g. - (SUM(Column3)-SUM(Column2))/COUNT() or AVG(Column4/Column3)...

PDF File Writer C# Class Library

The Code Project Latest Articles, April 10, 2013
Views: 416 | Hits 70

PDF File Writer is a C# class library allowing .NET applications to create PDF files....

Basic Illumination Model in C#

The Code Project Latest Articles, April 8, 2013
Views: 365 | Hits 72

Basic illumination model in C#....

Plotting User-Defined R2 in R Functions Using C#

The Code Project Latest Articles, April 8, 2013
Views: 268 | Hits 23

Plotting user defined R2 in R functions using C#...

Simple Ray Tracing with Texture Mapping in C#

The Code Project Latest Articles, April 8, 2013
Views: 310 | Hits 28

Simple Ray Tracing with texture mapping in C#...

Philips Hue Lighting Controller

MSDN: Coding4Fun, April 8, 2013
Views: 273 | Hits 22

So Philips recently introduced their Hue Connected Bulbs: an easy-to-use set of LED light bulbs and Wi-Fi connected bridge which allows you to dynamically change the color of your home lighting using ...

Getting Started with WCF Data Services 5.4, OData v3 and JSON Light

Julia Lerman Blog - Dont Be Iffy..., April 6, 2013
Views: 335 | Hits 40

TLDR: Setup steps to get WCFDS 5.4 up and running JUBLS (Julies Usual Lengthy Back Story): WCF Data Services (aka WCFDS) updates are being released at a rapid pace. I think they are on a hoped-for 6...

Owin, Katana and getting started

Glavs Blog, April 4, 2013
Views: 343 | Hits 12

Introduction This article describes an emerging open source specification, referred to as Owin An Open Web Interface for .Net, what it is, and how this might be beneficial to the .Net technology sta...

Dynamic Lockscreen Changer for Windows Phone 8, Built With ASP.NET MVC and Azure Mobile Services

MSDN: Coding4Fun, March 25, 2013
Views: 226 | Hits 9

With the release of Windows Phone 8, a few new developer API endpoints were made available that allow third-party applications to change the device lockscreen image. In this article, I am establishing...

ASP.NET WebAPI Tip #3: camelCasing JSON

K. Scott Allen, March 25, 2013
Views: 266 | Hits 37

Let's say you have the following type definition in C#:public class Thing { public int Id { get; set; } public string FirstName { get; set; } public string ISBN { get; set; } publi...

Giving temporary access to your ASP.NET Web API with Hawk

Pablo M. Cibraro (aka Cibrax), March 8, 2013
Views: 264 | Hits 20

One of the features supported by Hawk, an HTTP authentication protocol based on HMAC, is to provide read-only access to a Web API for a short period time.  Thats performed through a token called ...

Creating an OpenXML Word file with .NET

Simple Talk, March 6, 2013
Views: 141 | Hits 13

There was a time that the only way you could write or read an MS Office file within another application was to automate the office tool. Now there are better ways, using the Open XML office Dcoument f...

Creating your own Text Editor with AvalonEdit

MSDN: Coding4Fun, March 6, 2013
Views: 272 | Hits 32

In my day to day secret identity (aka. my job) I've been recently using AvalonEdit to help me present text files to my users, mark them up and also allow them to interact with that data and thought th...

ST Micro-electronics Device Firmware Upgrade (DFU/DfuSe) from C#

The Code Project Latest Articles, March 4, 2013
Views: 512 | Hits 8

ST provide a DFU module for their STM32 micro-controllers for firmware upgrade over USB. This is an example of how to use it from C#....

ASP.NET Web API Logging and Troubleshooting

Pablo M. Cibraro (aka Cibrax), March 1, 2013
Views: 364 | Hits 55

ASP.NET ships with two built-in mechanisms for doing logging and troubleshooting.  Chasing errors without knowing these two mechanisms might be a daunting task, specially if they happen in the ru...

Top 10 Things to Know about TypeScript

DotNetBips.com Latest Articles, February 28, 2013
Views: 331 | Hits 64

TypeScript is a superset of JavaScript that provides typed nature to your code. TypeScript can be used for cross-browser development and is an open source project. This article is intended to give you...

scriptcs Living on the edge in C# without a project on the wings of Roslyn and Nuget

Brendan Tompkins, February 28, 2013
Views: 285 | Hits 27

Disclaimer: I am not the first person to create a tool for C# scripting. There are a long list of projects from too many people to name, and I respect all of them A big part of why I did … Continue re...

Message Handlers per Route in ASP.NET Web API

Pablo M. Cibraro (aka Cibrax), February 25, 2013
Views: 267 | Hits 27

Message Handlers are one of the core components for message processing in Web API. They use an asynchronous model for processing messages, so they receive a request message and returns a Task with the...

Easy content templates for Orchard, take 2

More Whidbey stuff, February 14, 2013
Views: 320 | Hits 6

Placement.info is an XML file that orchestrates the different parts of a content item and sends each of the shapes they create into specific local content zones. If the previous sentence sounded confu...

How Resharper rocks my average work day.

The Code Project Latest Articles, February 11, 2013
Views: 371 | Hits 81

I’ve been using Resharper since I started coding in .NET/C#. It’s a tool with a lot of features which aids you in the average day development. In this blog post I’m going to show you...

Flying the AR.Drone 2.0 with Windows Store Applications

MSDN: Coding4Fun, January 30, 2013
Views: 395 | Hits 16

The AR.Drone 2.0The Parrot AR.Drone 2.0 is an awesome device packed with cool features. The drone contains two cameras, one pointed forward that streams live video, and one pointed downwards (for all ...

Versatile WebCam C# library

The Code Project Latest Articles, January 29, 2013
Views: 595 | Hits 45

Easy to use C# WebCam library that's not plagued with weird DLL references or PInvoke calls...

Sorting C# collections that have no collating sequence

The Code Project Latest Articles, January 27, 2013
Views: 570 | Hits 49

This is an alternative for "Sorting using C# Lists"...

Main Method in C#

The Code Project Latest Articles, January 24, 2013
Views: 604 | Hits 57

This article is all about the Main method in C#....