Click here to Skip to main content
15,889,335 members
Home / Discussions / C#
   

C#

 
AnswerRe: Loading Dlls programatically in C# Pin
Shukla Rahul21-Jun-09 22:17
Shukla Rahul21-Jun-09 22:17 
QuestionGetting array of Numbers. Pin
Sangram_KP21-Jun-09 17:35
Sangram_KP21-Jun-09 17:35 
AnswerRe: Getting array of Numbers. Pin
Christian Graus21-Jun-09 19:32
protectorChristian Graus21-Jun-09 19:32 
QuestionRe: Getting array of Numbers. Pin
Sangram_KP21-Jun-09 20:03
Sangram_KP21-Jun-09 20:03 
AnswerRe: Getting array of Numbers. Pin
Christian Graus21-Jun-09 21:15
protectorChristian Graus21-Jun-09 21:15 
GeneralRe: Getting array of Numbers. Pin
himanshu256121-Jun-09 21:30
himanshu256121-Jun-09 21:30 
GeneralRe: Getting array of Numbers. Pin
CPallini21-Jun-09 20:48
mveCPallini21-Jun-09 20:48 
AnswerRe: Getting array of Numbers. Pin
himanshu256121-Jun-09 20:44
himanshu256121-Jun-09 20:44 
Hi,
This might help you.
List<int> al = new List<int>();
       al.Add(1);
       al.Add(2);
       al.Add(3);
       al.Add(5);
       al.Add(6);
       al.Add(11);
       al.Add(12);
       al.Add(13);
       al.Add(21);
       al.Add(22);
       int x = 0;
    List<int>[] ll=new List<int>[al.Count];
    ll[x] = new List<int>();
       for(int i=0;i<al.Count;i++)
       {
           if ((i + 1) == al.Count)
           {
               if (al[i]  == al[i- 1]+1)
               {
                   ll[x].Add(al[i]);
               }

           }
           else
           {
               if (al[i] + 1 == al[i + 1])
               {
                   ll[x].Add(al[i]);
               }
               else
               {
                   ll[x].Add(al[i]);
                   x = x + 1;
                   ll[x] = new List<int>();
               }
           }
       }
       Array aa = ll.ToArray(); ;


himanshu

AnswerRe: Getting array of Numbers. Pin
PIEBALDconsult22-Jun-09 7:06
mvePIEBALDconsult22-Jun-09 7:06 
QuestionlistView1.GetItemAt always returns null Pin
Mohammad Dayyan21-Jun-09 17:33
Mohammad Dayyan21-Jun-09 17:33 
AnswerRe: listView1.GetItemAt always returns null Pin
N a v a n e e t h21-Jun-09 17:45
N a v a n e e t h21-Jun-09 17:45 
GeneralRe: listView1.GetItemAt always returns null Pin
Mohammad Dayyan21-Jun-09 18:49
Mohammad Dayyan21-Jun-09 18:49 
AnswerRe: listView1.GetItemAt always returns null Pin
dan!sh 21-Jun-09 17:45
professional dan!sh 21-Jun-09 17:45 
GeneralRe: listView1.GetItemAt always returns null Pin
Mohammad Dayyan21-Jun-09 18:52
Mohammad Dayyan21-Jun-09 18:52 
AnswerRe: listView1.GetItemAt always returns null Pin
Giorgi Dalakishvili21-Jun-09 20:23
mentorGiorgi Dalakishvili21-Jun-09 20:23 
QuestionError 1053: The service did not respond to the start or control request in a timely fashion Pin
obrix_activex21-Jun-09 15:00
obrix_activex21-Jun-09 15:00 
AnswerRe: Error 1053: The service did not respond to the start or control request in a timely fashion Pin
N a v a n e e t h21-Jun-09 16:45
N a v a n e e t h21-Jun-09 16:45 
GeneralRe: Error 1053: The service did not respond to the start or control request in a timely fashion Pin
obrix_activex21-Jun-09 20:51
obrix_activex21-Jun-09 20:51 
GeneralRe: Error 1053: The service did not respond to the start or control request in a timely fashion Pin
PIEBALDconsult22-Jun-09 7:11
mvePIEBALDconsult22-Jun-09 7:11 
GeneralRe: Error 1053: The service did not respond to the start or control request in a timely fashion Pin
obrix_activex22-Jun-09 20:05
obrix_activex22-Jun-09 20:05 
AnswerRe: Error 1053: The service did not respond to the start or control request in a timely fashion Pin
Narendra Reddy Vajrala17-Aug-09 6:30
Narendra Reddy Vajrala17-Aug-09 6:30 
QuestionC# Chess Timer not working Pin
JulioRevka21-Jun-09 14:43
JulioRevka21-Jun-09 14:43 
AnswerRe: C# Chess Timer not working Pin
Christian Graus21-Jun-09 15:01
protectorChristian Graus21-Jun-09 15:01 
AnswerRe: C# Chess Timer not working Pin
Eddy Vluggen21-Jun-09 15:04
professionalEddy Vluggen21-Jun-09 15:04 
GeneralRe: C# Chess Timer not working Pin
Christian Graus21-Jun-09 15:55
protectorChristian Graus21-Jun-09 15:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.