Tag Archives: CLR

Re-using COBOL rather than converting it to C#

While reading a article on-line about using “NACA transcoder” to translate COBOL into Java it got me thinking about modernizing COBOL. While I agree 100% about the actual code generated by the NACA transcoder is not maintainable, I disagree that … Continue reading

Posted in CLR, COBOL | Tagged , , , , , , , | Comments Off on Re-using COBOL rather than converting it to C#

Getting started with Windows Azure

As someone has been working with Windows Azure since its early days I understand how much effort it takes to get started with the platform. Luckily over the last couple of Windows Azure SDK releases the documentation is started to … Continue reading

Posted in CLR, COBOL, Windows Azure | Tagged , , | Comments Off on Getting started with Windows Azure

A good new years gift…

My day job keeps me housed in Visual Studio 2010/Windows, so for my out of hours development I feel I need a change, so for many years I have been a home mac and/or linux user; anyway I have used … Continue reading

Posted in CLR, CSharp, Mono, MonoDroid | Tagged , , , , , | Comments Off on A good new years gift…

SQLCLR – Drop Assembly + Dependancies

Recently I have had the pleasure of working on SQL Server 2008 R2 using the SQLCLR support. Which I must admit it is quite nice to use, though a couple of things have anoyed me while using… one of which … Continue reading

Posted in CLR, SQL | Tagged , , | Comments Off on SQLCLR – Drop Assembly + Dependancies

Last week I replied to a post about exceptions, it made me think those programming .Net daily take for granted the etiquette of using Exceptions. So I thought I would share some of my thoughts… well it is a sort … Continue reading

Posted in CLR, Tips | Tagged , , | Comments Off on

Method Chaining

Creating objects with a complex constructor can be a bit of a pain in any language. One technique I have used is method chaining. It is not applicable to every type of class but it can be useful. Method chain … Continue reading

Posted in CLR, COBOL | Tagged , , , , , , | Comments Off on Method Chaining

Reflection and COBOL

For the last couple of months I have working on Visual Studio 2010 and this include Microsoft CLR v4 and I was recently asked how to write a test that determines at runtime which CLR is being used and what … Continue reading

Posted in CLR, COBOL, Tips | Tagged , , , , | Comments Off on Reflection and COBOL

Base Class Library, Arrays, Queues and Stacks

Continuing the series of blogs about COBOL and the .Net base class library… The .Net base class library has a wealth classes and an huge of amount of methods/properties. The .Net base class library has a key handy namespace that … Continue reading

Posted in CLR, COBOL | Tagged , , | Comments Off on Base Class Library, Arrays, Queues and Stacks

Detecting the use Mono CLR dynamically

While developing something that could be used on Mono on Windows, Mono on Unix and on Windows with Microsoft’s CLR, I needed to be sensitive to the environment but didn’t want to conditionally compile my code different. So I put … Continue reading

Posted in CLR, CSharp, Mono, Tips | Tagged , , | Comments Off on Detecting the use Mono CLR dynamically

Too Iterate or not…

Over the next couple of weeks, I will explore some of the reasons why I think managed environments are good for COBOL. So.. lets the show on the road… Setting up arrays/occurs items in COBOL and manipulating them can be … Continue reading

Posted in CLR, COBOL, Tips | Tagged , , , | Comments Off on Too Iterate or not…