Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more: (untagged)
I'm looking for a tool that can read and compare between two source code for instance.

C#
private void Test()
{

int = 1;

}



is same as


C#
private void Test()
{

    int = 1;

  }



But it is a different between


C#
private void test()
{

int = 1;

}



and

C#
private void Test()
{

    int = 1;

  }

Do you know a recommended software?

If possible, if would be greate to know a software in open source, freeware or commercial?

Thanks!
Posted

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900