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, 8 refactorings, tagged with C#

Hi guys, following my previ...

Ff95c7c3ca3d629881699497de8fd99e Talk
1
2
3
4
bool Do_People_Still_Read_This
{
     // Not sure what to put here? "return true;" or "return false;" ?
...

C# Since I Cannot Message Peop...

by robzyc, March 31, 2008 11:03, 4 refactorings, tagged with question

Didn't/couldn't see how to ...

Ff95c7c3ca3d629881699497de8fd99e 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, 9 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
1
2
3
4
private string CodiceControllo(string codice_fiscale)
{
	int somma = 0;
...

C# Code to Simplify

by Squall77it, December 19, 2007 16:26, 5 refactorings

Hi, I am new on c#...
ther...

6ea4797d26c05b3d44e49b989f1a393c Talk
1
2
3
4
using System;

namespace FizzBuzz
...

C# I hate to do this, but...

by nibbles&bits, October 24, 2007 15:13, 6 refactorings

Let the battle begin!

326e4b379fafa37c9483d6f8e8eb9826 Talk
1
2
3
4
    static class SqlExec
    {
        public static void ExecCommandBatch(System.Data.Common.DbConnection conn, System.Data.IsolationLevel isolation, ExceptionFailSafeEventHandler<System.Exception> failSafe, params System.Data.Common.DbCommand[] cmds)
...

C# ExecuteCommandBatch

by nibbles&bits, October 21, 2007 02:34, 1 refactoring

It's rather large, but also...

326e4b379fafa37c9483d6f8e8eb9826 Talk
1
2
3
4
while (classificator.Clients.Count > 0)
{
	Client client = ServiceHelper<Client>.GetFirst(classificator.Clients);
...

C# How to add gracefully undo ...

by Darius Damalakas, September 27, 2007 02:42, 2 refactorings

.Net, C#

The code below ...

C63d2d886af30dbea99a341467ac116d Talk
1
2
3
public static class BusyIndicator
{
...

C# .NET BusyIndicator

by D_Guidi, September 26, 2007 23:40, 8 refactorings

Show a BusyIndicator during...

D257aa96373ab45e0ef15cfdb60efe33 Talk