Identifying Wigly Line in Code..

Omniitstudent
Posted by Omniitstudent under C# category on | Points: 40 | Views : 1594
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication33
{
class Program
{
static void Main(string[] args)
{
Console.ReadLine //Here is Red Wigly line means Systax Error

Console.WriteLine();
int i ;////Here is Green way Wigly line means Compiler warning

int c = v ;//Here is Blue way Wigly line means edit and continue issues


}
}
}

Comments or Responses

Posted by: T.Saravanan on: 3/15/2012 Level:Silver | Status: [Member] [MVP] | Points: 10
Kindly post your code inside the code tag.

Login to post response