I'm facing an issue to convert VB.NET To C#, to be clear here is VB.NET code :
VB. NET :
Private listFlDay As New List(Of FlowLayoutPanel)
C# :
private List<FlowLayoutPanel> listFlDay = new List<FlowLayoutPanel>();
So far all is well, but in my code on VBA i have this method :
VB :
listFlDay((i - 1) + (startDayAtFlNumber - 1)).Tag = i
C# :
listFlDay((i - 1) + (startDayAtFlNumber - 1)).Tag = i;
but i have an error like : listFlDay cannot be used as a method in C#
Can you please told me how i can convert this to C# ?
Thank you
Kamal