| Hi
 Trying to use c# version of alglib trial in the clean C# Visual Studio project, i've got 2 errors:
 
 Error	1	Duplicate 'System.Reflection.AssemblyCompanyAttribute' attribute
 ...\alglib-test\alglib_info.cs	  Line 64	alglib-test
 Error	2	Duplicate 'System.Reflection.AssemblyProductAttribute' attribute
 ...\alglib-test\alglib_info.cs	  Line 65	alglib-test
 
 After commenting these 2 lines (see below) all ok... Is it a normal situation?
 
 [assembly:System.Reflection.AssemblyCompanyAttribute("ALGLIB Project")]
 [assembly:System.Reflection.AssemblyProductAttribute("ALGLIB for C# (managed)")]
 
 Project "Console Application" with alglibnet2.dll and all .cs files from \src\...
 .NET 4.5, Win8.1 64bit, MS Visual C# 2012.
 
 
 |