1
2
3
4
using System;
    using System.Collections.Generic;
    using System.Linq;
...

C# ASP.NET MVC List Helper

by jmcd, August 18, 2010 20:42, 6 refactorings, tagged with C#, asp.net-mvc

The idea behind this helper...

493e6c6fc3f24eb73295548cfd136574 Talk
1
2
3
4
 public  class EngGetCalculatedTaskField
    {
        private static TaskMaintenanceDataDataContext engTaskCtx { get; set; }
...

C# How can i use generic class...

by programmerist, August 11, 2010 13:30, 4 refactorings, tagged with C#, LINQ, .net

i want to use generic cla...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
   public void LoadById(string SearchItem)
        {
            var myTechnicTasks = engTaskCtx.Tasks.Where(task => task.MyTechnicReference.StartsWith(SearchItem)).Select(task => new MyTask()
...

C# How can i shorter my linq c...

by programmerist, August 11, 2010 08:22, 3 refactorings, tagged with C#, LINQ, .net

hi; i try to run my codes. ...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
private static HumanResource CompressTimesheetItems(HumanResource employee)
{
	List<TimesheetItemObject> CompressedTimesheetItems = new List<TimesheetItemObject>();
...

C# Merging similar objects

by Greg Buehler, August 05, 2010 14:10, 2 refactorings, tagged with C#, optimize

Our reporting program uses ...

C3b0b8da886396ca8d5a28ad397c404d Talk
1
2
3
4
  public class LoadDataset
    {
        public DataSet GetAllData(string sp)
...

C# How can i load dataset via ...

by programmerist, June 01, 2010 20:35, 2 refactorings, tagged with C#, oop

i try to write a winform ap...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
using System;
using System.Collections.Generic;
using System.Linq;
...

C# How can i refactor theese c...

by programmerist, May 30, 2010 20:20, 2 refactorings, tagged with C#, .net, oop, design

How can i refactor theese c...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
using System;
using System.Collections.Generic;
using System.Linq;
...

C# How can i SRP princible in ...

by programmerist, May 30, 2010 10:02, 2 refactorings, tagged with C#, C# asp.net-mvc, .net, oop, design

i try to calculate triangle...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
using System;
using System.Collections.Generic;
using System.ComponentModel;
...

C# New to refactoring: is my d...

by sebastianlarsson.myopenid.com, May 08, 2010 19:32, 3 refactorings, tagged with design, refactoring, C#, gdi+, threads

Hi guys,

I am currently ...

96a6679bd148d24bc8baca0414674f62 Talk
1
2
3
4
  public class GenoTipController
    {
        public _Company GenerateCompany(DataModelType modeltype)
...

C# GenoTipController must pro...

by programmerist, April 16, 2010 07:15, 12 refactorings, tagged with C#, architecture, design

GenoTipController must pro...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
public class TelnetParser
    {
        public event EventHandler<TelnetCommandEventArgs> Command;
...

C# Created a Telnet Parser wit...

by Killersponge, February 02, 2010 12:01, 1 refactoring, tagged with Telnet, TDD, C#

So I've was just using TDD ...

B20991026b45ee0d77e9bbb2b6776097 Talk
1
2
3
4
private static bool SetFolderBasedOnFirstStatus(PurchaseOrder po)
{
    bool documentFinished = false;
...

C# Two methods, two enums.

by mrgrande.livejournal.com, January 22, 2010 20:24, 1 refactoring, tagged with C#, enum

I have these two very simil...

Avatar Talk
1
2
3
4
public static byte[] ResizeImageFile(byte[] imageFile, int targetSize)
{
    using (System.Drawing.Image oldImage = System.Drawing.Image.FromStream(new MemoryStream(imageFile)))
...

C# Image Resizing

by tmeers.myopenid.com, January 08, 2010 03:03, 2 refactorings, tagged with C#, gdi+

I'm really trying to nail o...

Avatar Talk
1
2
3
4
private static void Log(object message, MessageType type)
		{
			string str = message.ToString();
...

C# Line splitting optimization

by xeon06.myopenid.com, December 07, 2009 20:59, 3 refactorings, tagged with optimize, speed, C#, xna, lines

This is a console logging f...

Avatar Talk
1
2
3
4
//
// frmMain
//
...

C# FlashCard Program Using SQLite

by etherealmonkey.myopenid.com, October 31, 2009 18:47, 2 refactorings, tagged with C#, sqlite

I'm a newb, so please be ni...

Avatar Talk
1
2
3
4
public static class ObjectToXmlConverter
{
    #region Class Methods
...

C# XML Object Serializer to XS...

by dotnetchris, September 25, 2009 19:20, 2 refactorings, tagged with C#, xml, serialization, xslt, transform

I'm using XSLT for document...

F0e7c2d0d5d83c928cfcfce66928160e Talk
1
2
3
4
 public void ChangeCommuteItems(int startAtRecord)
        {
            using (DataContext context = new DataContext())
...

C# Improve Batch Processing fo...

by thekevdog.myopenid.com, August 27, 2009 13:58, 1 refactoring, tagged with C#, batch, LINQ

I need to do a bunch of dat...

Avatar Talk
1
2
3
4
public ActionResult Add(FormCollection values)
        {
            var keywordRepository = new DataRepository<Keyword>();
...

C# Form Add

by alex, August 24, 2009 11:08, 5 refactorings, tagged with C#, asp.net-mvc

I have this method wich is ...

Avatar Talk
1
2
3
/// <summary>
...

C# CircularLinkedList

by navaneethkn, August 14, 2009 08:45, 5 refactorings, tagged with C#, linked-list, algorithms

Here is my circular linked ...

B2522e761028dd3af7fa39c744adefc3 Talk
1
2
3
4
class Program
    {

...

C# .Net Console Application H...

by zsysopx.myopenid.com, August 13, 2009 16:01, 3 refactorings, tagged with .net, C#, Console Application

Hi all i would like someone...

Avatar Talk
1
2
3
4
public class OpenTableCommandBuilder : CommandStringBuilder
    {
        string template = @"Open Table {FileName} {TableName}
...

C# Refactor string command bui...

by madmanwoo.myopenid.com, July 10, 2009 03:59, 1 refactoring, tagged with C#, builder, string building

I was wondering if anyone c...

03ccba009c26488991d9ec669e3fccf6 Talk
1
2
3
4
using System;
using System.Collections.Generic;
using System.Linq;
...

C# Cached IEnumerable<T>

by Charles Strahan, July 06, 2009 15:15, 1 refactoring, tagged with speed, C#, IEnumerable

Hello,

I created a this ...

A1e6f320dcdb6a0afd7fd19a1e5f932e Talk
1
2
3
4
using System;
using System.Collections.Generic;
using System.Text;
...

C# Square Class

by emptyiness12z.blogspot.com, May 24, 2009 09:48, 2 refactorings, tagged with C#

A messy class that has grow...

Avatar Talk
1
2
3
using System.Collections.Generic;
using System.IO;
...

C# Gedcom Reader

by crash893.myopenid.com, May 14, 2009 19:42, 2 refactorings, tagged with gedcom, reader, C#, class

Created this reader class f...

Avatar Talk
1
2
3
4
public IList<IStatus> RepsonseHandler(string responseText)
{
	IList<IStatus> Output = null;
...

C# Generic Lists of Different ...

by mkoby, May 12, 2009 20:25, 2 refactorings, tagged with C#, generics

I have some code for a Twit...

Ef9a110e6f84d3ebf3d4672ad090a1de Talk
1
2
3
4
UI Layer

        private void SaveEquipment()
...

C# Help me Refactor My Classes...

by zsysop.myopenid.com, April 18, 2009 18:14, 3 refactorings, tagged with C#

Please help me refactor thi...

Eaeb97b81092455b2b39fd74a04304ef Talk