Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I working with this code and getting error "method "doSomthing1" does not exist in current context":

static void Main( ) {
  Stopwatch stopwatch1;
  stopwatch1 = new Stopwatch( );
  stopwatch1.Reset( );
  stopwatch1.Start( );
  Task<List<int>> myTask = Task<List<int>>.Factory.StartNew( ( ) => doSomething1( ) );
  //Task<int> myTask = Task<int>.Factory.StartNew( ( ) => doSomething2 () );

  Thread.Sleep( 500 );
  Stopwatch stopwatch2 = new Stopwatch( );
  stopwatch2.Reset( );
  stopwatch2.Start( );
  //myTask.Wait( );
  if( myTask.IsCompleted ) {
    stopwatch2.Stop( );
  }

   myTask.Result.ForEach (x => Console.WriteLine (x.ToString () ));
  stopwatch1.Stop( );
  Console.WriteLine( "Stopwatch 1 elapsed time " + stopwatch1.ElapsedMilliseconds.ToString( ) );
  Console.WriteLine( "Stopwatch 2 elapsed time " + stopwatch2.ElapsedMilliseconds.ToString( ) );
  Console.Read( );
}

static List<int> doSomething1(  ) {
  Thread.Sleep( 2000 );
  return new List<int> { 1, 2, 3, 4, 5, 6 };     
}

static int doSomething2 () {
  Thread.Sleep( 2000 );
  int k = 2 ;
  return k ;
}

If I use the task with Task definition then every thing works but when I tried to use Task<List<T>> then I get error.

Could anyone explain the cause of error. Thanks

share|improve this question
static void that returns int? – ken2k Dec 13 '12 at 15:19
Coudld anyone explain why down vote. thanks – User1551892 Dec 13 '12 at 15:37
I would like to remove this question, can anyone help me. Thanks – User1551892 Dec 13 '12 at 15:39

1 Answer

up vote 4 down vote accepted

Case sensitive method names, doh!.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.