Prakash Tripathi

Prakash Tripathi

  • 25
  • 43.8k
  • 6.2m

var in class level members

Jul 3 2016 2:45 AM
Hello experts,
 
I wonder why var is not allowed to be used in class level members. When using so, I am getting error as "The contextual keyword 'var' may only appear within a local variable declaration or in script code"
 
class ConcurrentDictionaryDemo
{
var phoneOrders = new ConcurrentDictionary<string, int>();  //Error
............
............
}
 
Any thoughts on this?

Answers (2)