コード例 #1
0
        /// <summary>
        /// Equals
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        public override bool Equals(object obj)
        {
            ShardedVertexTable other = obj as ShardedVertexTable;

            return(this.PartitionKey.Equals(other.PartitionKey) && this.RowKey.Equals(other.RowKey));
        }