コード例 #1
0
ファイル: ObjectId.cs プロジェクト: zeya/NoRM
 public static bool TryParse(string value, out ObjectId id)
 {
     id = Empty;
     if (value == null || value.Length != 24)
     {
         return false;
     }
     try
     {
         id = new ObjectId(value);
         return true;
     }
     catch (FormatException)
     {
         return false;
     }
 }
コード例 #2
0
ファイル: ObjectId.cs プロジェクト: kenegozi/NoRM
 /// <summary>
 /// Equalses the specified other.
 /// </summary>
 /// <param name="other">
 /// The other.
 /// </param>
 /// <returns>
 /// The equals.
 /// </returns>
 public bool Equals(ObjectId other)
 {
     return other != null && this.ToString() == other.ToString();
 }