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

C#

 
QuestionBuilding Audio Apps Using C# Pin
mikepalma23-Mar-07 18:13
mikepalma23-Mar-07 18:13 
AnswerRe: Building Audio Apps Using C# Pin
Christian Graus23-Mar-07 18:35
protectorChristian Graus23-Mar-07 18:35 
QuestionNo overload for method take "0" arguments Pin
chitra4sat23-Mar-07 18:08
chitra4sat23-Mar-07 18:08 
AnswerRe: No overload for method take "0" arguments Pin
Christian Graus23-Mar-07 18:31
protectorChristian Graus23-Mar-07 18:31 
GeneralRe: No overload for method take "0" arguments Pin
chitra4sat23-Mar-07 19:21
chitra4sat23-Mar-07 19:21 
GeneralRe: No overload for method take "0" arguments Pin
abhinarulkar23-Mar-07 20:13
abhinarulkar23-Mar-07 20:13 
GeneralRe: No overload for method take "0" arguments Pin
chitra4sat23-Mar-07 20:31
chitra4sat23-Mar-07 20:31 
GeneralRe: No overload for method take "0" arguments Pin
Stefan Troschuetz23-Mar-07 23:37
Stefan Troschuetz23-Mar-07 23:37 
public void TestAddMarix() {
  int[,] MatrixA ={ { 1, 2 }, { 2, 3 } };
  int[,] MatrixB ={ { 3, 4 }, { 4, 5 } };

  AddMatrix(MatrixA, MatrixB);
}

public int[,] AddMatrix(int[,] MatrixA, int[,] MatrixB)
{
  int numberOfRows = MatrixA.Length / 2;
  int numberOfCols = numberOfRows;
  int[,] MatrixC = new int[numberOfRows, numberOfCols];
  for (int i = 0; i <=numberOfRows; i++)
  {
    for (int j = 0; j <=numberOfCols; j++)
    {
      MatrixC[i, j] = MatrixA[i, j] + MatrixB[i, j];
    }
  }
  return MatrixC; 
}



"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

www.troschuetz.de

Questionbranching and skip logic Pin
econner23-Mar-07 16:37
econner23-Mar-07 16:37 
AnswerRe: branching and skip logic Pin
Christian Graus23-Mar-07 16:58
protectorChristian Graus23-Mar-07 16:58 
AnswerRe: branching and skip logic Pin
Leslie Sanford23-Mar-07 17:50
Leslie Sanford23-Mar-07 17:50 
QuestionMDI in pocket pc Pin
mezo_2223-Mar-07 13:00
mezo_2223-Mar-07 13:00 
AnswerRe: MDI in pocket pc Pin
Dave Kreskowiak23-Mar-07 14:01
mveDave Kreskowiak23-Mar-07 14:01 
QuestionCan I have to PaintEventHandlers in my program Pin
laura131623-Mar-07 12:44
laura131623-Mar-07 12:44 
AnswerRe: Can I have to PaintEventHandlers in my program Pin
Guffa23-Mar-07 14:07
Guffa23-Mar-07 14:07 
Questionhow to get to the form close button Pin
mezo_2223-Mar-07 12:18
mezo_2223-Mar-07 12:18 
AnswerRe: how to get to the form close button Pin
Stefan Troschuetz23-Mar-07 12:30
Stefan Troschuetz23-Mar-07 12:30 
QuestionRe: how to get to the form close button Pin
mezo_2223-Mar-07 12:46
mezo_2223-Mar-07 12:46 
AnswerRe: how to get to the form close button Pin
Muammar©23-Mar-07 20:54
Muammar©23-Mar-07 20:54 
AnswerRe: how to get to the form close button Pin
Stefan Troschuetz23-Mar-07 23:17
Stefan Troschuetz23-Mar-07 23:17 
QuestionFindWindow returns 0 Pin
kozu23-Mar-07 10:40
kozu23-Mar-07 10:40 
AnswerRe: FindWindow returns 0 Pin
Dawid Mazuruk23-Mar-07 14:05
Dawid Mazuruk23-Mar-07 14:05 
QuestionRemoving Click Once files Pin
Himdog23-Mar-07 10:35
Himdog23-Mar-07 10:35 
AnswerRe: Removing Click Once files Pin
Christian Graus23-Mar-07 11:10
protectorChristian Graus23-Mar-07 11:10 
QuestionComparing lines Pin
CodeItWell23-Mar-07 10:27
CodeItWell23-Mar-07 10:27 

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.