Click here to Skip to main content
16,016,460 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to convert this into C# code..?
AddHandler ddlPager.SelectedIndexChanged, AddressOf Me.PageSizeChanged
Posted

try this:

ddlPager.SelectedIndexChanged += this.PageSizeChanged;

I would really recommend you looking at the following tool from DeveloperFusion to use conversions!

http://www.developerfusion.com/tools/convert/vb-to-csharp/[^]
 
Share this answer
 
C# equivalent:
C#
ddlPager.SelectedIndexChanged += this.PageSizeChanged;


Have a look at these tools:
Code Translation for .NET (C#<->VB.NET)[^]
Developer Fusion Convert C# to VB.NET [^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900