I have define collection of enumerable like this
IEnumerable<TaggedEdge<int, float>> enumerable;
if (tryFunc(World.sortedList_3.IndexOfValue(vector2), ref enumerable) && World.gclass19_0.bool_1)
{
}
And here I am getting error for
Use of unassigned local variable 'enumerable'. Error code : CS0165
So here how can I solve this one ? Please help.