// USER Profile using System; ...
C# Matching the most propertie...
We have an interesting litt...
//MYSQLCONNECTION.cs namespace MyClassGenerator.DatabaseController ...
C# Best method for DAL
i have generated DAL layer ...
private void InitArrays(int size)
{
_id = new string[size];
...
C# Refractor code with SQL bu...
Hi I use SQL bulk insert to...
using System; using System.Collections.Generic; using System.Linq; ...
C# Refactoring Suggestions
Was looking for some sugges...
using System; using System.Collections.Generic; using System.Linq; ...
C# keyboard input manager, hel...
This code looks incredibly ...
using System; using System.Collections.Generic; using System.Linq; ...
C# how to Refactor Base Class ...
i try to generate some meth...
public class MyClass1
{
private DataDestination1 _destination = new DataDestination1();
...
C# Need help with refactoring ...
Need some help optimizing &...
/// <summary>
/// Takes HTML and list of all positions of h3 tags and splits them.
/// </summary>
...
C# Split HTML from header tag ...
The HTML is pre-parsed to g...
UserAccessControl uac = new UserAccessControl();
if (uac.IsAccessable)
...
C# Setting variable in if bloc...
How can I write a shorter
namespace WinApp.EF
{
public partial class Form1 : Form
...
C# How to I write a repository...
i try to write a kind of re...
public sealed class TypeConverterRegistry : TypeConverterRegistryBase {
public static readonly TypeConverterRegistry Instance = new TypeConverterRegistry();
static TypeConverterRegistry() {}
...
C# Generic type converter
Please note, this is also b...
namespace Marcidia.Net
{
[MarcidiaComponent(
...
C# Best way to refactor this?
Is there a good way to refa...
namespace Marcidia.Net
{
[MarcidiaComponent(
...
C# Best way to refactor this?
Is there a good way to refa...
namespace Marcidia.Net
{
[MarcidiaComponent(
...
C# Best way to refactor this?
Is there a good way to refa...
using System;
using System.Collections.Generic;
using System.Linq;
...
C# ASP.NET MVC List Helper
The idea behind this helper...
public class EngGetCalculatedTaskField
{
private static TaskMaintenanceDataDataContext engTaskCtx { get; set; }
...
C# How can i use generic class...
i want to use generic cla...
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...
hi; i try to run my codes. ...
private static HumanResource CompressTimesheetItems(HumanResource employee)
{
List<TimesheetItemObject> CompressedTimesheetItems = new List<TimesheetItemObject>();
...
C# Merging similar objects
Our reporting program uses ...
public class LoadDataset
{
public DataSet GetAllData(string sp)
...
C# How can i load dataset via ...
i try to write a winform ap...
using System; using System.Collections.Generic; using System.Linq; ...
C# How can i refactor theese c...
How can i refactor theese c...
using System; using System.Collections.Generic; using System.Linq; ...
C# How can i SRP princible in ...
i try to calculate triangle...
using System; using System.Collections.Generic; using System.ComponentModel; ...
C# New to refactoring: is my d...
Hi guys,
I am currently ...
public class GenoTipController
{
public _Company GenerateCompany(DataModelType modeltype)
...
C# GenoTipController must pro...
GenoTipController must pro...
public class TelnetParser
{
public event EventHandler<TelnetCommandEventArgs> Command;
...
C# Created a Telnet Parser wit...
So I've was just using TDD ...
In classic ASP days I was u...