C# 클래스 Sanguosha.Core.Utils.ObjectInfo

Helper class encapsulating both the object and the nullable state flag.
파일 보기 프로젝트 열기: RagingBigFemaleBird/sgs 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
nullable bool
obj object

공개 메소드들

메소드 설명
ObjectInfo ( object obj ) : System

Constructor, defaulting nullable to false.

ObjectInfo ( object obj, bool nullable ) : System

Constructor.

메소드 상세

ObjectInfo() 공개 메소드

Constructor, defaulting nullable to false.
public ObjectInfo ( object obj ) : System
obj object The object to serialize.
리턴 System

ObjectInfo() 공개 메소드

Constructor.
public ObjectInfo ( object obj, bool nullable ) : System
obj object The object to serialize.
nullable bool The nullable state.
리턴 System

프로퍼티 상세

nullable 보호되어 있는 프로퍼티

protected bool nullable
리턴 bool

obj 보호되어 있는 프로퍼티

protected object obj
리턴 object