C# 클래스 SimpleFramework.Xml.Strategy.ArrayValue

The ArrayValue object is a value used for describing arrays for a specified component type object. This provides the component type for the array as well as the length of the array, which allows the deserialization process to build a suitable length array from the criteria taken from the XML element.
상속: Value
파일 보기 프로젝트 열기: ngallagher/simplexml

공개 메소드들

메소드 설명
ArrayValue ( Class type, int size ) : System

Constructor for the ArrayValue object. This will provide sufficient criteria to the deserialization process to instantiate an array of the specified size an type.

IsReference ( ) : bool

메소드 상세

ArrayValue() 공개 메소드

Constructor for the ArrayValue object. This will provide sufficient criteria to the deserialization process to instantiate an array of the specified size an type.
public ArrayValue ( Class type, int size ) : System
type Class /// this is the component type for the array ///
size int /// this is the size of the array to instantiate ///
리턴 System

IsReference() 공개 메소드

public IsReference ( ) : bool
리턴 bool