Stories recently tagged with 'CLR' Subscribe to this feed

Regular expressions in MS SQL Server 2005/2008. (blog.wickasitha.com)

submitted by wickasithawickasitha(20) 10 hours, 44 minutes ago

ou can use all .Net Framework Regular Expressions via MS Server CLR Integration. Microsoft recommends to use CLR Integration in scenarios where CLR-based programming can complement the expressive power of the T-SQL query language read more...

add a comment | category: | Views: 2

tags: another

IL perversions: throwing and catching strings (weblogs.asp.net)

submitted by gpeipmangpeipman(1830) 22 hours, 26 minutes ago

Inspired by Mohamed Mahmoud’s blog posting How to: Create Interfaces with Static Methods via IL? I wrote another sick example on IL (Intermediate Language) to show you how different is the world behind compilers. Tonight I have enough of exceptions, I want to throw some strings! Let’s do it! read more...

add a comment | category: | Views: 0

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentQueue (www.codethinked.com)

published 4 days, 7 hours ago, submitted by pitadev_ajpitadev_aj(270) 5 days, 5 hours ago

The ConcurrentQueue is a simple (in use, not in construction!) and yet very powerful addition to your parallel programming toolset. If you need thread-safe FIFO operations, then you can throw your locks away and start using the ConcurrentQueue today. read more...

add a comment | category: | Views: 162

tags: another

Five things I don't like about F# (cultivatingcode.com)

submitted by jburgerjburger(790) 5 days, 12 hours ago

Jim - a passionate F# developer - attempts to direct some constructive criticism regarding the latest CTP of the F# language. read more...

add a comment | category: | Views: 10

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentStack (www.codethinked.com)

published 7 days, 23 hours ago, submitted by pitadev_ajpitadev_aj(270) 8 days, 4 hours ago

The ConcurrentStack is an excellent new tool in our parallel programming toolset which allows us to get the LIFO behavior we want, all without having to worry about locking. read more...

add a comment | category: | Views: 222

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentBag (www.codethinked.com)

published 12 days, 7 hours ago, submitted by pitadev_ajpitadev_aj(270) 13 days, 5 hours ago

Another in-depth look at a new namespace in .NET 4.0 and how it can help with multithreading. read more...

1 comment | category: | Views: 278

tags: another

IronJS is a new JavaScript runtime for .NET (github.com)

submitted by fholmfholm(5) 16 days, 5 hours ago

IronJS is a JavaScript runtime built on top of the Dynamic Language Runtime for .NET, it was just open sourced under the GPL v3 license at GitHub. read more...

add a comment | category: | Views: 11

tags: another

A basic proxy for intercepting method calls (Part –2) (weblogs.asp.net)

submitted by mehfuzhmehfuzh(1850) 17 days, 12 hours ago

In my previous post , i introduced a basic proxy that intercepts methods. But what is missing in the proxy is that it does not consider method arguments and can not handle return types. In this post, i will enhance the proxy to support exactly those. read more...

add a comment | category: | Views: 4

tags: another

.Net Memory Management & Garbage Collection « Ramani Sandeep's Blog (ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(70) 20 days, 6 hours ago

The Microsoft .NET common language runtime requires that all resources be allocated from the managed heap. Objects are automatically freed when they are no longer needed by the application. When a process is initialized, the runtime reserves a contiguous region of address space that initially has no storage allocated for it. This address space region is the managed heap. The heap also maintains a pointer. This pointer indicates where the next object is to be allocated within the heap. Initially, the pointer is set to the base address of the reserved address space region. read more...

add a comment | category: | Views: 5

tags: another

Pair Has Changed But Is Not Going Away (www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(965) 1 month, 9 days ago

I wrote earlier about creating a factory method for KeyValuePair<K, V> similar to the factory method in the Tuple class. Like the KVP, a two element Tuple is known as a pair as well. But did you know there exists another Pair class in the .NET Framework? read more...

add a comment | category: | Views: 7

tags: another

System.AddIn Pipeline Builder (blog.catenalogic.com)

submitted by TischnoetentoetTischnoetentoet(225) 1 month, 10 days ago

A new pipeline builder project for the System.AddIn namespace is started on CodePlex! read more...

add a comment | category: | Views: 3

tags: another

Rx: Event composition - single-valued (www.minddriven.de)

submitted by MatthiasJMatthiasJ(315) 2 months, 12 days ago

This followup shows event composition operators of the Reactive Framework (Rx) that take several event streams as input and product a single output stream where each element on this stream maps identically to an element on any input stream. Diagrams and some demo code support the description and show the usage of those operators. read more...

add a comment | category: | Views: 5

tags: another

Rx: Event composition - multi-valued (www.minddriven.de)

submitted by MatthiasJMatthiasJ(315) 2 months, 12 days ago

This blog post shows which composing operators exist in the Reactive Framework (Rx) that combine input event streams to an output event stream, which contains elements with values from each input event stream. Visualization is done by some neat diagrams. PPT and demo sourcecode are included as well. read more...

add a comment | category: | Views: 4

tags: another

Rx: Bing Translate Example (www.minddriven.de)

submitted by MatthiasJMatthiasJ(315) 2 months, 12 days ago

I've implemented the Reactive Framework Bing Translate example with some modifications and give it to you as complete SL3 Visual Studio solution. Live demo included. Have fun! read more...

add a comment | category: | Views: 6

tags: another

News on Rx (Reactive Extensions for .NET) (www.minddriven.de)

submitted by MatthiasJMatthiasJ(315) 2 months, 13 days ago

What's new in the DevLabs release of Rx, the Reactive Extensions for .NET (aka Reactive Framework)? Some information I'll share with you here. read more...

add a comment | category: | Views: 8

tags: another

Executing IronPython Code from IronRuby (www.ironshay.com)

submitted by shayfriedmanshayfriedman(905) 2 months, 15 days ago

One of the advantages of the Dynamic Language Runtime (DLR) is the fact that it makes sharing code between the languages that are written on top of it (and on top of the CLR as well). In this post I’ll show you how to run IronPython code from IronRuby so you can take it and make wonders! read more...

add a comment | category: | Views: 1

tags: another