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

C#

 
GeneralRe: Detect certain substrings multiple times? Pin
Martin#3-Aug-07 0:29
Martin#3-Aug-07 0:29 
QuestionWhat would be logic?interesting (Visual Studio C# .Net) Pin
zeeShan anSari2-Aug-07 22:06
zeeShan anSari2-Aug-07 22:06 
AnswerRe: What would be logic?interesting (Visual Studio C# .Net) Pin
Martin#2-Aug-07 22:44
Martin#2-Aug-07 22:44 
GeneralRe: What would be logic?interesting (Visual Studio C# .Net) Pin
zeeShan anSari2-Aug-07 23:01
zeeShan anSari2-Aug-07 23:01 
GeneralRe: What would be logic?interesting (Visual Studio C# .Net) Pin
Martin#2-Aug-07 23:03
Martin#2-Aug-07 23:03 
GeneralRe: What would be logic?interesting (Visual Studio C# .Net) Pin
zeeShan anSari3-Aug-07 0:11
zeeShan anSari3-Aug-07 0:11 
GeneralRe: What would be logic?interesting (Visual Studio C# .Net) Pin
Martin#3-Aug-07 0:15
Martin#3-Aug-07 0:15 
GeneralRe: What would be logic?interesting (Visual Studio C# .Net) Pin
zeeShan anSari3-Aug-07 0:49
zeeShan anSari3-Aug-07 0:49 
I think it is best!Big Grin | :-D
For the 250,200 case, the basic code would be:

int[,] array = new int[250,200];
// code to initialize array
int[] reverse = new int[200];

for (int i = 0; i < 200; i++)
{
reverse[i] = array[0, 199 - i];
}

for (int i = 1; i < 250; i += 2)
{
for (int j = 0; j < 200; j++)
{
array[i,j] = reverse[j];
}
}
AnswerRe: What would be logic?interesting (Visual Studio C# .Net) Pin
zeeShan anSari3-Aug-07 1:14
zeeShan anSari3-Aug-07 1:14 
Questioncreating a webservice problems Pin
Daniel_Logan2-Aug-07 21:44
Daniel_Logan2-Aug-07 21:44 
AnswerRe: creating a webservice problems Pin
Christian Graus2-Aug-07 21:52
protectorChristian Graus2-Aug-07 21:52 
GeneralRe: creating a webservice problems Pin
Daniel_Logan2-Aug-07 22:35
Daniel_Logan2-Aug-07 22:35 
GeneralRe: creating a webservice problems Pin
Christian Graus2-Aug-07 22:38
protectorChristian Graus2-Aug-07 22:38 
GeneralRe: creating a webservice problems Pin
Daniel_Logan2-Aug-07 23:02
Daniel_Logan2-Aug-07 23:02 
GeneralRe: creating a webservice problems Pin
Christian Graus2-Aug-07 23:09
protectorChristian Graus2-Aug-07 23:09 
GeneralRe: creating a webservice problems Pin
Daniel_Logan2-Aug-07 23:11
Daniel_Logan2-Aug-07 23:11 
GeneralRe: creating a webservice problems Pin
Christian Graus2-Aug-07 23:23
protectorChristian Graus2-Aug-07 23:23 
GeneralRe: creating a webservice problems Pin
Daniel_Logan2-Aug-07 23:46
Daniel_Logan2-Aug-07 23:46 
GeneralRe: creating a webservice problems Pin
Albu Marius3-Aug-07 0:00
Albu Marius3-Aug-07 0:00 
GeneralRe: creating a webservice problems Pin
Albu Marius3-Aug-07 0:10
Albu Marius3-Aug-07 0:10 
GeneralRe: creating a webservice problems Pin
Daniel_Logan3-Aug-07 0:35
Daniel_Logan3-Aug-07 0:35 
GeneralRe: creating a webservice problems Pin
Albu Marius3-Aug-07 0:44
Albu Marius3-Aug-07 0:44 
GeneralRe: creating a webservice problems Pin
Albu Marius3-Aug-07 0:54
Albu Marius3-Aug-07 0:54 
QuestionBase Class Constructor on Inheritance Pin
N a v a n e e t h2-Aug-07 21:14
N a v a n e e t h2-Aug-07 21:14 
AnswerRe: Base Class Constructor on Inheritance Pin
Christian Graus2-Aug-07 21:21
protectorChristian Graus2-Aug-07 21:21 

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.