<h4>
	References
</h4>
...

C# Razor template

by msony.myopenid.com, November 06, 2011 06:33, 2 refactorings, tagged with template, C#, Razor

In classic ASP days I was u...

55502f40dc8b7c769880b10874abc9d0 Talk
// USER Profile

using System;
...

C# Matching the most propertie...

by openid.daniel.mcpherson.name/danielmc, September 18, 2011 17:05, 3 refactorings, tagged with C#, filtering, performance

We have an interesting litt...

81991ad45e78f662d1fd7cdae9511c30 Talk
//MYSQLCONNECTION.cs

namespace MyClassGenerator.DatabaseController
...

C# Best method for DAL

by programmerist, September 02, 2011 14:57, 1 refactoring, tagged with oop, C#, OOP Class, refactoring

i have generated DAL layer ...

Dc2b5374b8c24a20577346b9b1e4891f Talk
private void InitArrays(int size)
        {
            _id = new string[size];
...

C# Refractor code with SQL bu...

by https://www.google.com/accounts/o8/id?id=AItOawlimm1oKtOeVAo-0tSuFHsckNVuSqBumU4, August 16, 2011 13:12, 5 refactorings, tagged with C#, ADO.NET, SQL, ODP.NET, BULK, INSERT

Hi I use SQL bulk insert to...

55502f40dc8b7c769880b10874abc9d0 Talk
using System;
using System.Collections.Generic;
using System.Linq;
...

C# Refactoring Suggestions

by zsysop.myopenid.com, August 01, 2011 12:20, 1 refactoring, tagged with C#, itextsharp

Was looking for some sugges...

Eaeb97b81092455b2b39fd74a04304ef Talk
using System;
using System.Collections.Generic;
using System.Linq;
...

C# keyboard input manager, hel...

by https://www.google.com/accounts/o8/id?id=AItOawnqawCiTBXC2E2brXU3OtMUew3g7x9ZDtc, June 07, 2011 15:55, 21 refactorings, tagged with input, C#, xna, keyboard, manager, really, ugly

This code looks incredibly ...

55502f40dc8b7c769880b10874abc9d0 Talk
using System;
using System.Collections.Generic;
using System.Linq;
...

C# how to Refactor Base Class ...

by programmerist, June 04, 2011 08:13, 4 refactorings, tagged with asp.net, C#, .nw

i try to generate some meth...

Dc2b5374b8c24a20577346b9b1e4891f Talk
public class MyClass1
    {  
        private DataDestination1 _destination = new DataDestination1();
...

C# Need help with refactoring ...

by zsysop.myopenid.com, May 20, 2011 07:49, 2 refactorings, tagged with C#, parallelforeach

Need some help optimizing &...

Eaeb97b81092455b2b39fd74a04304ef Talk
/// <summary>
        /// Takes HTML and list of all positions of h3 tags and splits them.
        /// </summary>
...

C# Split HTML from header tag ...

by Ender, March 09, 2011 12:52, 2 refactorings, tagged with string, html, C#, parse

The HTML is pre-parsed to g...

C98e188ba63a7875d61a77d7aaa3f5c7 Talk
UserAccessControl uac = new UserAccessControl();

            if (uac.IsAccessable)
...

C# Setting variable in if bloc...

by Zoltran, February 02, 2011 21:29, 5 refactorings, tagged with C#, if else, shorten

How can I write a shorter

D5303b0c98c5046f64ebb02445e85809 Talk
namespace WinApp.EF
{
    public partial class Form1 : Form
...

C# How to I write a repository...

by ykaratoprak.blogspot.com, December 07, 2010 19:48, 3 refactorings, tagged with C#, LINQ, class object

i try to write a kind of re...

55502f40dc8b7c769880b10874abc9d0 Talk
public sealed class TypeConverterRegistry : TypeConverterRegistryBase {
  public static readonly TypeConverterRegistry Instance = new TypeConverterRegistry();
  static TypeConverterRegistry() {}
...

C# Generic type converter

by nrkn, October 27, 2010 02:38, 2 refactorings, tagged with C#, generics, type conversion

Please note, this is also b...

B3ffd9a3735f1f3d56ce0225bf271964 Talk
namespace Marcidia.Net
{
    [MarcidiaComponent(
...

C# Best way to refactor this?

by Sekhat, September 21, 2010 10:02, 1 refactoring, tagged with C#

Is there a good way to refa...

B20991026b45ee0d77e9bbb2b6776097 Talk
namespace Marcidia.Net
{
    [MarcidiaComponent(
...

C# Best way to refactor this?

by Sekhat, September 21, 2010 10:01, No refactoring, tagged with C#

Is there a good way to refa...

B20991026b45ee0d77e9bbb2b6776097 Talk
namespace Marcidia.Net
{
    [MarcidiaComponent(
...

C# Best way to refactor this?

by Sekhat, September 21, 2010 09:57, No refactoring, tagged with C#

Is there a good way to refa...

B20991026b45ee0d77e9bbb2b6776097 Talk
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
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 .net, C#, LINQ

i want to use generic cla...

Dc2b5374b8c24a20577346b9b1e4891f Talk
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 .net, C#, LINQ

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

Dc2b5374b8c24a20577346b9b1e4891f Talk
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
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 oop, C#

i try to write a winform ap...

Dc2b5374b8c24a20577346b9b1e4891f Talk
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 oop, .net, C#, design

How can i refactor theese c...

Dc2b5374b8c24a20577346b9b1e4891f Talk
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 oop, .net, C#, design, C# asp.net-mvc

i try to calculate triangle...

Dc2b5374b8c24a20577346b9b1e4891f Talk
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 C#, design, gdi+, refactoring, threads

Hi guys,

I am currently ...

96a6679bd148d24bc8baca0414674f62 Talk
public class GenoTipController
    {
        public _Company GenerateCompany(DataModelType modeltype)
...

C# GenoTipController must pro...

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

GenoTipController must pro...

Dc2b5374b8c24a20577346b9b1e4891f Talk
public class TelnetParser
    {
        public event EventHandler<TelnetCommandEventArgs> Command;
...

C# Created a Telnet Parser wit...

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

So I've was just using TDD ...

B20991026b45ee0d77e9bbb2b6776097 Talk