Search:

Type: Posts; User: badger7755

Search: Search took 0.00 seconds.

  1. Singleton with inheritance for all repositories, how can i change as static property?

    public class BaseRepository<T> where T : class
    {

    protected BaseRepository()
    {


    }
    protected static BaseRepository<T> _instance;
  2. Replies
    6
    Views
    7,626

    function overloading, why is it done?

    public SqlCommand GetCommand(string commandText, CommandType commandType, params SqlParameter[] parameters) { SqlCommand cmd = new SqlCommand();
    cmd.Connection =...
  3. what is wrong? how can i remake this code to rotate clockwaise

    static void Main(string[] args)
    {
    int[,] matr = { { 1,2 },
    { 3,4 },
    { 5,6 },
    { 7,8 }
    ...
Results 1 to 3 of 3