[Solved] how can we solve this type? [closed]

Question is absolutely not clair… like this? private static Dictionary<String, PointPairList> s_PointPairLists = new Dictionary<String, PointPairList>(); private static void BuildPointPairLists(Int32 limit) { for (Int32 i = 2; i < limit; ++i) { if ((tabl[i].x != null) && (tabl[i].y != null)) { Double[] x = { 0, tabl[i].y }; Double[] y = { tabl[i].x, 0 }; … Read more

[Solved] Embedded statement error [duplicate]

Please take a look at the piece of code, resulting in an error: if(obj is sortDateTime) sortDateTime sDT = (sortDateTime) obj; //here ERROR return m_stDate.CompareTo(sDT.m_stDate); What you are saying is this: if the object is of type ‘sortDateTime’ Allocate memory for variable ‘sDT’ Cast ‘obj’ to type ‘sortDateTime’ Store the result in variable ‘sDT’ And … Read more