i am working on assignment where i define following dictionary
Dictionary<string, List<fileInfo>> myDic = new Dictionary<string, List<fileInfo>>();
where
public class fileInfo
{
public string fileFullName;
public double tf;
public double idf;
public double tf_idf;
public double cosineSim;
public fileInfo()
{
fileFullName = null;
tf = 0.0;
idf = 0.0;
tf_idf = 0.0;
cosineSim = 0.0;
}
}
now i want to sort the list with respect to COSINESIM