error CS1041: Identifier expected

I copied this code from Parse Platform and unity console tell me 'Assets/Test.cs(5,26): error CS1041: Identifier expected ’

using UnityEngine;
using System.Collections;
using Parse;
using System.Threading.Tasks;
using System.Collections.*;
using System;public class Test : MonoBehaviour {

// Use this for initialization
void Start () {
	
	int number = 42;
	string str = "the number is " + number;
	DateTime date = DateTime.Now;
	byte[] data = System.Text.Encoding.UTF8.GetBytes("playerName");
	IList<object> list = new List<object> { str, number };
	IDictionary<string, object> dictionary = new Dictionary<string, object>
	{
		{ "number", number },
		{ "string", str }
	};
	
	var bigObject = new ParseObject("BigObject");
	bigObject["myNumber"] = number;
	bigObject["myString"] = str;
	bigObject["myDate"] = date;
	bigObject["myData"] = data;
	bigObject["myList"] = list;
	bigObject["myDictionary"] = dictionary;
	Task saveTask = bigObject.SaveAsync();

}

// Update is called once per frame
void Update () {

}

}

Replace

using System.Collections.*;   

with

using System.Collections.Generic;
using System.Collections.Specialized;