tags:

views:

42

answers:

2

What is maximum lenght of the Tag property of the control

+3  A: 

There is none, it takes an object.

ANeves
+7  A: 

That's not how it works, the Tag property type is System.Object. You can store a reference to anything you want, including a 2 gigabyte string on a 64-bit version of Windows.

Hans Passant