I have a piece of code that is too much for the inline syntax checking.
Inline Syntax checking indicates a code error, but when compiling everything is fine and the code works!
Does somebody have a trick how to "cheat" syntax checking not to indicate an error? e.g. Some rewriting of List<int[]> ?
Best regards
P.S.
Problem lies in List<int[]> declaration:
Here a code snippet:
public List<int[]> cluster(SimilarityDistanceCalculator){
// above line is error free
List<int[]> result = new List<int[]>();
// the above line causes a syntax error display at int[]
...
...
...
}

Comment