namespace Utilities
{
    using System;
...

C# StringExt.cs (String Extens...

by snafu918, August 06, 2008 16:46, 6 refactorings, tagged with string, C#, Extension, coldfusion

Ok take it easy on me, I ju...

95fd293467e8e89e44701d09eead51d4 Talk
namespace DataSetTableAdapters {

    partial class MyTableAdapter {
...

C# TableAdapter and CommandTim...

by Auron, July 02, 2008 10:19, 10 refactorings, tagged with .net, C#, tableadapter, commandtimeout, dataset, ado

As TableAdapters are are au...

C2953d47b6de83f3217b48c3584fab1c Talk
public static List<T> MergeListCollections<T>(List<T> firstList, List<T> secondList)
{
    List<T> mergedList = new List<T>();
...

C# Merge generic lists

by nkirkes.myopenid.com, June 30, 2008 18:42, 5 refactorings, tagged with C#, List<T>, generics

Toying with some utility me...

9661a8802c6d6f7e876c6fc7bae6721b Talk
// ***** Encryption and Decryption ***** //

byte[] Key(string sText) {
...

C# Encryption and Decryption

by GateKiller, June 20, 2008 14:00, 2 refactorings, tagged with C#, Encrypt, Decrypt

This is my first attempt at...

98c852e2d9b26249745ea92c72964d3f Talk
using System;
using System.Collections.Generic;
using System.Linq;
...

C# Pointers in C#

by Andre Steenveld, May 06, 2008 10:39, 1 refactoring, tagged with C#, Unsafe, pointers, unmanaged

I am trying to work out how...

D41d8cd98f00b204e9800998ecf8427e Talk
void CopySourceTables(List<TableNameResult> tables, int id)
{
    // Execute the "Copy" Command on the Server for Each Table.
...

C# Common StProc Code

by robzyc, April 02, 2008 12:53, 15 refactorings, tagged with C#

Hi guys, following my previ...

C290d3851c7837081d05b3491cbc331b Talk
public List<double> GenerateLogNormalDistribution(int numberOfTimes, double mean, double standardDeviation)
{
    Random randomGenerator = new Random();
...

C# Lognormal Distribution

by Jonathan, January 26, 2008 02:07, 1 refactoring, tagged with C#, Lognormal distribution, Finance

Is there a better way to do...

55502f40dc8b7c769880b10874abc9d0 Talk
def filename
  self.uri.split('/').last
...

C# Get the Filename segment o...

by jwmittag, January 01, 2008 15:04, 11 refactorings, tagged with Comparison, Scott Porad, asp.net, DotNET, .net, C-Sharp, CSharp, C#, RoR, Ruby on Rails, rails, ruby

On his Blog "Progress vs. P...

89f45d140c5d9b14fd63720ea8b0cb47 Talk