Click here to Skip to main content
15,892,161 members
Home / Discussions / C#
   

C#

 
AnswerRe: XML Help Pin
Stefan Troschuetz19-Apr-07 21:29
Stefan Troschuetz19-Apr-07 21:29 
QuestionImage processing in Visual Studio C# .Net Pin
zeeShan anSari19-Apr-07 21:25
zeeShan anSari19-Apr-07 21:25 
AnswerRe: Image processing in Visual Studio C# .Net Pin
shrinerainxp19-Apr-07 21:52
shrinerainxp19-Apr-07 21:52 
QuestionTo Check a Window Service on C#.Net Pin
biswabhusan19-Apr-07 21:22
biswabhusan19-Apr-07 21:22 
AnswerRe: To Check a Window Service on C#.Net Pin
DaGol20-Apr-07 0:51
DaGol20-Apr-07 0:51 
GeneralRe: To Check a Window Service on C#.Net Pin
biswabhusan20-Apr-07 1:20
biswabhusan20-Apr-07 1:20 
AnswerRe: To Check a Window Service on C#.Net Pin
biswabhusan20-Apr-07 1:18
biswabhusan20-Apr-07 1:18 
QuestionList&ltmyobj&gt Pin
Smith#19-Apr-07 21:00
Smith#19-Apr-07 21:00 
List<int> lst_int=new List<int>();
lst_int.Add(3);
lst_int.Add(5);
lst_int.Add(2);
lst_int.Sort();
MessageBox.Show(lst_int[0].ToString());

struct mystruct
{
int x;
int y;
}
How do I implement "sort" for lists of type mystruct?
List<mystruct>
List<mystruct> lst_mystruct=new List<struct>();

mystruct mys;
mys.x=10;
mys.y=12;
lst_mystruct.Add(mys);
how do I sort now?






Beer | [beer]

AnswerRe: List&ltmyobj&gt Pin
Stefan Troschuetz19-Apr-07 21:33
Stefan Troschuetz19-Apr-07 21:33 
Questioncreating a custom textbox to display pictures instead of characters Pin
connect2sandeep19-Apr-07 19:24
connect2sandeep19-Apr-07 19:24 
AnswerRe: creating a custom textbox to display pictures instead of characters Pin
Christian Graus19-Apr-07 20:00
protectorChristian Graus19-Apr-07 20:00 
GeneralRe: creating a custom textbox to display pictures instead of characters Pin
connect2sandeep19-Apr-07 22:14
connect2sandeep19-Apr-07 22:14 
QuestionC# Populating Listview Pin
mikepalma19-Apr-07 19:15
mikepalma19-Apr-07 19:15 
AnswerRe: C# Populating Listview Pin
coolestCoder19-Apr-07 19:25
coolestCoder19-Apr-07 19:25 
AnswerRe: C# Populating Listview Pin
Christian Graus19-Apr-07 20:03
protectorChristian Graus19-Apr-07 20:03 
GeneralRe: C# Populating Listview Pin
mikepalma20-Apr-07 13:17
mikepalma20-Apr-07 13:17 
QuestionDataGridView in c# Pin
7119-Apr-07 18:32
7119-Apr-07 18:32 
AnswerRe: DataGridView in c# Pin
Sathesh Sakthivel19-Apr-07 19:15
Sathesh Sakthivel19-Apr-07 19:15 
GeneralRe: DataGridView in c# Pin
7119-Apr-07 21:01
7119-Apr-07 21:01 
AnswerRe: DataGridView in c# Pin
coolestCoder19-Apr-07 19:20
coolestCoder19-Apr-07 19:20 
GeneralRe: DataGridView in c# Pin
7119-Apr-07 21:04
7119-Apr-07 21:04 
GeneralRe: DataGridView in c# Pin
coolestCoder20-Apr-07 1:23
coolestCoder20-Apr-07 1:23 
AnswerRe: DataGridView in c# Pin
Keshav V. Kamat19-Apr-07 20:02
Keshav V. Kamat19-Apr-07 20:02 
GeneralRe: DataGridView in c# Pin
7119-Apr-07 21:14
7119-Apr-07 21:14 
QuestionWhere is [ProductCode] ? Pin
phantanagu19-Apr-07 17:04
phantanagu19-Apr-07 17:04 

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.