MongoDB.Bson.Serialization.IdGenerators.StringObjectIdGenerator.IsEmpty C# (CSharp) 메소드

IsEmpty() 공개 메소드

Tests whether an Id is empty.
public IsEmpty ( object id ) : bool
id object The Id.
리턴 bool
        public bool IsEmpty(object id)
        {
            return string.IsNullOrEmpty((string)id);
        }
    }