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

C#

 
AnswerRe: Save in related table ... Pin
OriginalGriff29-Jun-14 5:50
mveOriginalGriff29-Jun-14 5:50 
GeneralRe: Save in related table ... Pin
nassimnastaran29-Jun-14 10:16
nassimnastaran29-Jun-14 10:16 
Questionexchange data between forms ? Pin
Member 245846728-Jun-14 22:10
Member 245846728-Jun-14 22:10 
AnswerRe: exchange data between forms ? Pin
OriginalGriff28-Jun-14 22:19
mveOriginalGriff28-Jun-14 22:19 
GeneralRe: exchange data between forms ? Pin
Member 245846729-Jun-14 23:00
Member 245846729-Jun-14 23:00 
GeneralRe: exchange data between forms ? Pin
OriginalGriff29-Jun-14 23:12
mveOriginalGriff29-Jun-14 23:12 
QuestionHow to write an element address of array in C# Pin
pvpeng28-Jun-14 16:58
pvpeng28-Jun-14 16:58 
AnswerRe: How to write an element address of array in C# Pin
Pete O'Hanlon28-Jun-14 19:42
mvePete O'Hanlon28-Jun-14 19:42 
Something like this should do it:
C#
public static unsafe void Find()
{
  float[,] ctrlpoints = new float[4, 3] { { -4.0f, -4.0f, 0.0f }, { -2.0f, 4.0f, 0.0f }, { 2.0f, -4.0f, 0.0f }, { 4.0f, 4.0f, 0.0f } };
  fixed (float *address = &ctrlpoints[0, 0])
  {
  }
}
In order for this to work, you must set the option to compile unsafe code.
AnswerRe: How to write an element address of array in C# Pin
Kornfeld Eliyahu Peter28-Jun-14 19:57
professionalKornfeld Eliyahu Peter28-Jun-14 19:57 
QuestionMessage Closed Pin
28-Jun-14 9:35
Csíkszentmihályi28-Jun-14 9:35 
QuestionCan the recall frmLogIn ? Pin
Member 245846728-Jun-14 5:38
Member 245846728-Jun-14 5:38 
AnswerRe: Can the recall frmLogIn ? Pin
Richard Deeming30-Jun-14 1:51
mveRichard Deeming30-Jun-14 1:51 
GeneralRe: Can the recall frmLogIn ? Pin
Member 24584674-Jul-14 21:02
Member 24584674-Jul-14 21:02 
GeneralRe: Can the recall frmLogIn ? Pin
Richard Deeming7-Jul-14 2:02
mveRichard Deeming7-Jul-14 2:02 
GeneralRe: Can the recall frmLogIn ? Pin
Member 24584678-Jul-14 20:49
Member 24584678-Jul-14 20:49 
QuestionTrying to get List<T> through reflection Pin
joost.versteegen28-Jun-14 5:29
joost.versteegen28-Jun-14 5:29 
AnswerRe: Trying to get List<T> through reflection Pin
Alan N28-Jun-14 6:12
Alan N28-Jun-14 6:12 
GeneralRe: Trying to get List<T> through reflection Pin
joost.versteegen28-Jun-14 23:20
joost.versteegen28-Jun-14 23:20 
AnswerRe: Trying to get List<T> through reflection Pin
Alan N29-Jun-14 0:55
Alan N29-Jun-14 0:55 
GeneralRe: Trying to get List<T> through reflection Pin
joost.versteegen29-Jun-14 1:12
joost.versteegen29-Jun-14 1:12 
AnswerRe: Trying to get List<T> through reflection Pin
PIEBALDconsult28-Jun-14 7:48
mvePIEBALDconsult28-Jun-14 7:48 
AnswerRe: Trying to get List<T> through reflection Pin
Richard Deeming30-Jun-14 1:47
mveRichard Deeming30-Jun-14 1:47 
QuestionThesis Project Pin
jomilyn28-Jun-14 3:02
jomilyn28-Jun-14 3:02 
AnswerRe: Thesis Project Pin
Pete O'Hanlon28-Jun-14 3:07
mvePete O'Hanlon28-Jun-14 3:07 
GeneralRe: Thesis Project Pin
jomilyn28-Jun-14 3:33
jomilyn28-Jun-14 3:33 

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.