1
2
3
4
public static void Capitalize()
{
    TextInfo oTextInfo = CultureInfo.CurrentCulture.TextInfo;
...

C# Capitalize directory name w...

by Moonshield, October 02, 2008 01:31, No refactoring, tagged with C#, LINQ, Capitalize, Directory

I wrote a method to capital...

72f36daa501cf8f5bb861210edd9232d Talk
1
2
3
4
    public class Timer
    {

...

C# Timer Class

by McDole, September 25, 2008 06:06, 2 refactorings, tagged with C#

This is a quick timer class...

503dc458e66746c5ac681e7057d209dd Talk
1
2
3
4
namespace Utilities
{
    using System;
...

C# StringExt.cs (String Extens...

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

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

95fd293467e8e89e44701d09eead51d4 Talk
1
2
3
4
namespace DataSetTableAdapters {

    partial class MyTableAdapter {
...

C# TableAdapter and CommandTim...

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

As TableAdapters are are au...

C2953d47b6de83f3217b48c3584fab1c Talk
1
2
3
4
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
1
2
3
4
// ***** Encryption and Decryption ***** //

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

C# Encryption and Decryption

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

This is my first attempt at...

98c852e2d9b26249745ea92c72964d3f Talk
1
2
3
4
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 Unsafe, C#, pointers, unmanaged

I am trying to work out how...

Avatar Talk
1
2
3
4
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, 12 refactorings, tagged with C#

Hi guys, following my previ...

C290d3851c7837081d05b3491cbc331b Talk
1
2
3
4
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...

Avatar Talk
1
2
3
def filename
  self.uri.split('/').last
...

C# Get the Filename segment o...

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

On his Blog "Progress vs. P...

4bae3f603d397647c273dfa49ef8050c Talk