Checking for syntax

For folks like me who have a non-programming background, some of the terms and syntax’s used in the UiPath learning path are challenging. For example :
message.Split("."c) - what does c indicate
AsEnumerable- what is enumerable data type and the meaning of the expression

Is there any document that I can refer to understand some of the syntax’s and move through the lessons faster?

Hello @Jayasuryan_Chandrasekhar
these methods are related to normal Programming
message.Split("."c) - what does c indicate here c means as char
AsEnumerable- what is enumerable data type and the meaning of the expression-This means it defines a template that types can implement for looping
you can read there term from given link

2 Likes