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...
public static List<T> MergeListCollections<T>(List<T> firstList, List<T> secondList)
{
List<T> mergedList = new List<T>();
...
C# Merge generic lists
Toying with some utility me...
// ***** Encryption and Decryption ***** //
byte[] Key(string sText) {
...
C# Encryption and Decryption
This is my first attempt at...
using System; using System.Collections.Generic; using System.Linq; ...
C# Pointers in C#
I am trying to work out how...
void CopySourceTables(List<TableNameResult> tables, int id)
{
// Execute the "Copy" Command on the Server for Each Table.
...
C# Common StProc Code
Hi guys, following my previ...
public List<double> GenerateLogNormalDistribution(int numberOfTimes, double mean, double standardDeviation)
{
Random randomGenerator = new Random();
...
C# Lognormal Distribution
Is there a better way to do...
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...
Ok take it easy on me, I ju...