ObjectStreamField.TypeCode Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns character encoding of field type.
public virtual char TypeCode { [Android.Runtime.Register("getTypeCode", "()C", "GetGetTypeCodeHandler")] get; }
	[<get: Android.Runtime.Register("getTypeCode", "()C", "GetGetTypeCodeHandler")>]
member this.TypeCode : char
	Property Value
the typecode of the serializable field
- Attributes
 
Remarks
Returns character encoding of field type. The encoding is as follows: <blockquote>
B            byte
            C            char
            D            double
            F            float
            I            int
            J            long
            L            class or interface
            S            short
            Z            boolean
            [            array
</blockquote>
Java documentation for java.io.ObjectStreamField.getTypeCode().
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.