|
|
|
|
|
by palakchokshi
3090 days ago
|
|
public class A { private int exid;
private string M;
public A()
{
M = "The result is:";
}
public string y(int u, int v)
{
return M + (u+v).ToString();
}
}public static void Main() { Console.WriteLine(new A().y(1,3));
}Now add hundreds of lines of such code and you'll get unreadable code. It is not in the eyes of the reader, some code is just unreadable. This is an extreme example though. |
|