Archive for the Category dotnet

 
 

GRID computing using .NET

GRID computing, in the sense of distributed computing with a focus on large-scale resource sharing and high performance computing Below are links to several  projects that lets you create Grids using the .NET platform:

MS.NETGrid - An open source .NET implementation of  Open Grid Services Architecture and Infrastructure
OGSI.NET - Another open source implementation of the same standard
Alchemi.NET - Yet another open-source project - this time a part of the GridBus project

[Via Cirrus Minor blog]

Enterprise Library June 2005 now available!

The June 2005 release of Enterprise Library is a minor update of the original January 2005 release. This release contains the same seven Microsoft patterns
& practices application blocks, and it incorporates the patches and extensions previously released to the Enterprise Library Community site. In addition, it includes several minor fixes and improvements.

Download it from here

[Via Tom Hollander's blog]

VB’s "My" for C# Developers

Dan Fernandez has resulted very interesting example of use That in C# 2.0.

As you know for this purpose in VB already there is keyword My.

Using "My", you can write code like this:

Dim contents As String
contents = My.Computer.FileSystem.ReadAllText("c:\mytextfile.txt")

Instead of this

 

Dim contents As String
contents = IO.File.ReadAllText("c:\mytextfile.txt")

Many developers requested similar functionality for C#.

Juval Lowy realized static class That with functionality similar to My in VB.NET.

Give your DLL a dedicated config file

“You can run a particular class library inside an AppDomain and give it a dedicated config file.  NUnit uses this technique to allow test assemblies to be configurable by naming your config file FooTestAssembly.dll.config. “

Interesting trick allow every assembly run in its own memory space and own its own configuration.

Read how to do that here

Scott doesn’t use datasets in ASP .NET Applications

This post by Scott Mitchell points his article where he discusses why he doesn’t use Datasets in ASP.NET Applications.

"According to A Speed Freak’s Guide to Retrieving Data in ADO.NET, the DataReader is roughly thirty times more performant than the DataSet."

[ Via Eric Wise's blog ]


Page 10 of 14« First...89101112...Last »