MongoDB.Bson.Serialization.Attributes.BsonDefaultValueAttribute.BsonDefaultValueAttribute C# (CSharp) 메소드

BsonDefaultValueAttribute() 공개 메소드

Initializes a new instance of the BsonDefaultValueAttribute class.
public BsonDefaultValueAttribute ( object defaultValue ) : System
defaultValue object The default value.
리턴 System
        public BsonDefaultValueAttribute(object defaultValue)
        {
            _defaultValue = defaultValue;
        }
BsonDefaultValueAttribute