Click here to Skip to main content
15,891,184 members
Home / Discussions / C#
   

C#

 
QuestionQuestion on Web serivce... Pin
Siva Koyi29-Apr-09 21:23
Siva Koyi29-Apr-09 21:23 
AnswerRe: Question on Web serivce... Pin
N a v a n e e t h29-Apr-09 21:56
N a v a n e e t h29-Apr-09 21:56 
GeneralRe: Question on Web serivce... Pin
Siva Koyi29-Apr-09 22:11
Siva Koyi29-Apr-09 22:11 
GeneralRe: Question on Web serivce... Pin
N a v a n e e t h29-Apr-09 23:07
N a v a n e e t h29-Apr-09 23:07 
GeneralRe: Question on Web serivce... Pin
Jabbar_espania30-Apr-09 1:33
Jabbar_espania30-Apr-09 1:33 
AnswerRe: Question on Web serivce... Pin
saanj29-Apr-09 23:47
saanj29-Apr-09 23:47 
Questionthread cpu usage Pin
shefa' isied29-Apr-09 21:07
shefa' isied29-Apr-09 21:07 
AnswerRe: thread cpu usage Pin
Jack Li29-Apr-09 21:21
Jack Li29-Apr-09 21:21 
This is example of Thread.

CODE:
static void Main(string[] args)
{
Thread t1 = new Thread(new ThreadStart(Thread1));
Thread t2 = new Thread(new ThreadStart(Thread2));

t1.Priority = ThreadPriority.BelowNormal ;
t2.Priority = ThreadPriority.Lowest ;
t1.Start();
t2.Start();
}
public static void Thread1()
{
for (int i = 1; i < 1000; i++)
{
dosth();
Console.Write("1");
}
}
public static void Thread2()
{
for (int i = 0; i < 1000; i++)
{
dosth();
Console.Write("2");
}
}
public static void dosth()
{
for (int j = 0; j < 10000000; j++)
{
int a=15;
a = a*a*a*a;
}
}
AnswerRe: thread cpu usage Pin
N a v a n e e t h29-Apr-09 21:52
N a v a n e e t h29-Apr-09 21:52 
QuestionICollectionView Pin
Paw Jershauge29-Apr-09 20:29
Paw Jershauge29-Apr-09 20:29 
AnswerRe: ICollectionView Pin
Jack Li29-Apr-09 21:17
Jack Li29-Apr-09 21:17 
GeneralRe: ICollectionView Pin
Paw Jershauge29-Apr-09 21:41
Paw Jershauge29-Apr-09 21:41 
AnswerRe: ICollectionView Pin
Spunky Coder29-Apr-09 21:58
Spunky Coder29-Apr-09 21:58 
GeneralRe: ICollectionView Pin
Paw Jershauge29-Apr-09 23:28
Paw Jershauge29-Apr-09 23:28 
Questionhow to unbind source control Pin
Maddie from Dartford29-Apr-09 17:12
Maddie from Dartford29-Apr-09 17:12 
AnswerRe: how to unbind source control Pin
Mycroft Holmes29-Apr-09 17:59
professionalMycroft Holmes29-Apr-09 17:59 
AnswerRe: how to unbind source control Pin
dotnetmember29-Apr-09 18:21
dotnetmember29-Apr-09 18:21 
GeneralRe: how to unbind source control Pin
Maddie from Dartford29-Apr-09 19:19
Maddie from Dartford29-Apr-09 19:19 
GeneralRe: how to unbind source control Pin
Jack Li29-Apr-09 21:11
Jack Li29-Apr-09 21:11 
Question[Message Deleted] Pin
nishukri529-Apr-09 17:09
nishukri529-Apr-09 17:09 
AnswerRe: hi!!! Pin
Christian Graus29-Apr-09 17:41
protectorChristian Graus29-Apr-09 17:41 
GeneralRe: hi!!! Pin
HuntingWabbits29-Apr-09 23:23
HuntingWabbits29-Apr-09 23:23 
AnswerRe: hi!!! Pin
12Code29-Apr-09 17:42
12Code29-Apr-09 17:42 
AnswerRe: hi!!! Pin
12Code29-Apr-09 17:58
12Code29-Apr-09 17:58 
AnswerRe: hi!!! Pin
SayreCC29-Apr-09 19:20
SayreCC29-Apr-09 19:20 

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.