Reply to thread

C# uses square brackets instead of parentheses for accessing Indexers and Arrays:


[code=csharp]

string user = Session["userName"];

[/code]


Back
Top