//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
C# On how to Refactor Base Class ...
by programmerist,
June 05, 2011 12:47
Why sholud not use object? ...
C# On how to Refactor Base Class ...
by programmerist,
June 05, 2011 12:47
Why sholud not use object? ...
using System; using System.Collections.Generic; using System.Linq; ...
C# how to Refactor Base Class ...
i try to generate some meth...
C# On How can i use generic class...
by programmerist,
August 15, 2010 17:42
Thanks this is best answer!!!!
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. ...
public class LoadDataset
{
public DataSet GetAllData(string sp)
...
C# How can i load dataset via ...
i try to write a winform ap...
C# On How can i SRP princible in ...
by programmerist,
May 31, 2010 15:45
Thanks alot it is usefull:)
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 ...
by programmerist,
May 30, 2010 10:02,
2 refactorings, tagged with oop, .net, C#, design, C# asp.net-mvc
i try to calculate triangle...
public class AntsController
{
static Dictionary<DataModelType, Func<object>> s_creators =
...
C# On GenoTipController must pro...
by programmerist,
April 17, 2010 12:40
Thanks alot Ants. My brain ...
using System; using System.Collections.Generic; using System.Linq; ...
C# On GenoTipController must pro...
by programmerist,
April 17, 2010 11:33
Ants; please look my codes ...
C# On GenoTipController must pro...
by programmerist,
April 17, 2010 10:59
Thanks alot but i can not u...
C# On GenoTipController must pro...
by programmerist,
April 17, 2010 08:53
Every thing is very good. B...
C# On GenoTipController must pro...
by programmerist,
April 17, 2010 07:06
Ants: you said that "My sol...
C# On GenoTipController must pro...
by programmerist,
April 16, 2010 12:42
Activator.CreateInstance is...
public class GenoTipController
{
public _Company GenerateCompany(DataModelType modeltype)
...
C# GenoTipController must pro...
GenoTipController must pro...
i have generated DAL layer ...