I need to use a byte array as a profile property in a website. Normally I would declare the type as system.string or system.int32 but I have no idea what the type if for a byte array.
EDIT: I need to use this as profile property that is declared in the web.config like below:
<profile defaultProvider='ProfileProvider' enabled='true'> <properties> <add name='Username' allowAnonymous='false' type='System.String' /> <add name='LoginToken' allowAnonymous='false' type=' System.Byte()' /> </properties> </profile>
Apparently vb wants it declared as System.Byte[] in the web.config