Hi there i'm a new developer (student) and i have algorithim coded by java and i want any help for converting to c# .....please
Code:
public class AssignmentProblem 
{ 
    double[][] cost;    //COST MATRIX
    int numCol;
    int numRow;
    
    
    public AssignmentProblem(double[][] cost){
        numCol=cost[0].length;
        numRow=cost.length;
        if (numRow>numCol)
...