Click here to Skip to main content
15,894,896 members
Home / Discussions / C#
   

C#

 
QuestionConcatenating specific properties values of class Pin
nitin_ion10-Mar-14 23:59
nitin_ion10-Mar-14 23:59 
SuggestionRe: Concatenating specific properties values of class Pin
Kornfeld Eliyahu Peter11-Mar-14 0:19
professionalKornfeld Eliyahu Peter11-Mar-14 0:19 
GeneralRe: Concatenating specific properties values of class Pin
nitin_ion11-Mar-14 0:37
nitin_ion11-Mar-14 0:37 
GeneralRe: Concatenating specific properties values of class Pin
Kornfeld Eliyahu Peter11-Mar-14 0:41
professionalKornfeld Eliyahu Peter11-Mar-14 0:41 
GeneralRe: Concatenating specific properties values of class Pin
nitin_ion11-Mar-14 0:48
nitin_ion11-Mar-14 0:48 
AnswerRe: Concatenating specific properties values of class Pin
Kornfeld Eliyahu Peter11-Mar-14 0:53
professionalKornfeld Eliyahu Peter11-Mar-14 0:53 
GeneralRe: Concatenating specific properties values of class Pin
nitin_ion11-Mar-14 1:24
nitin_ion11-Mar-14 1:24 
GeneralRe: Concatenating specific properties values of class Pin
Kornfeld Eliyahu Peter11-Mar-14 1:35
professionalKornfeld Eliyahu Peter11-Mar-14 1:35 
QuestionC# Win Forms Drag n Drop email to .EML file Pin
Member 875270110-Mar-14 23:29
Member 875270110-Mar-14 23:29 
AnswerRe: C# Win Forms Drag n Drop email to .EML file Pin
Bernhard Hiller11-Mar-14 0:08
Bernhard Hiller11-Mar-14 0:08 
GeneralRe: C# Win Forms Drag n Drop email to .EML file Pin
Member 875270111-Mar-14 0:13
Member 875270111-Mar-14 0:13 
GeneralRe: C# Win Forms Drag n Drop email to .EML file Pin
Bernhard Hiller11-Mar-14 0:31
Bernhard Hiller11-Mar-14 0:31 
GeneralRe: C# Win Forms Drag n Drop email to .EML file Pin
Member 875270111-Mar-14 0:34
Member 875270111-Mar-14 0:34 
QuestionC# Windos app with SQl Issue Pin
manumaxma10-Mar-14 22:32
manumaxma10-Mar-14 22:32 
AnswerRe: C# Windos app with SQl Issue Pin
Eddy Vluggen11-Mar-14 0:59
professionalEddy Vluggen11-Mar-14 0:59 
QuestionDatagridview Timed Output Pin
Su069110-Mar-14 18:25
Su069110-Mar-14 18:25 
AnswerRe: Datagridview Timed Output Pin
OriginalGriff10-Mar-14 22:41
mveOriginalGriff10-Mar-14 22:41 
AnswerRe: Datagridview Timed Output Pin
Richard MacCutchan10-Mar-14 22:46
mveRichard MacCutchan10-Mar-14 22:46 
QuestionShortest Way to Shuffle Array Pin
computerpublic10-Mar-14 16:23
computerpublic10-Mar-14 16:23 
AnswerRe: Shortest Way to Shuffle Array Pin
BillWoodruff10-Mar-14 22:35
professionalBillWoodruff10-Mar-14 22:35 
GeneralRe: Shortest Way to Shuffle Array Pin
Simon_Whale11-Mar-14 0:00
Simon_Whale11-Mar-14 0:00 
GeneralRe: Shortest Way to Shuffle Array Pin
computerpublic11-Mar-14 6:59
computerpublic11-Mar-14 6:59 
GeneralRe: Shortest Way to Shuffle Array Pin
Simon_Whale11-Mar-14 7:13
Simon_Whale11-Mar-14 7:13 
GeneralRe: Shortest Way to Shuffle Array Pin
computerpublic11-Mar-14 7:20
computerpublic11-Mar-14 7:20 
GeneralRe: Shortest Way to Shuffle Array Pin
Simon_Whale11-Mar-14 7:29
Simon_Whale11-Mar-14 7:29 
C#
//Create out array
int[] arrayValues = {1,2,3,4,5,6};

//Create a random value
Random rnd = new Random((int)DateTime.Now.Ticks & 0x0000FFFF);

//Do the Shuffle, using Linq which returns an object of IEnumerable<int> in this case
// so we need to convert to back to an array hence to ".ToArray()" at the end.
arrayValues = arrayValue.Orderby(itm => rnd.Next()).ToArray();


have a read of these, as the solution covers a range of topics but does what you are after. I am afraid to say that you are going to have do some background reading to get yourself up to speed.

datetime.now.ticks[^]

LINQ Tutorial for Beginners[^]
Every day, thousands of innocent plants are killed by vegetarians.

Help end the violence EAT BACON

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.