Ejemplo n.º 1
0
        public void CopyFrom(XS_authorType authorType_in)
        {
            int _index = -1;

            idauthor_             = authorType_in.idauthor_;
            name_                 = authorType_in.name_;
            copyrighttext_        = authorType_in.copyrighttext_;
            feedbackemailaddress_ = authorType_in.feedbackemailaddress_;
        }
Ejemplo n.º 2
0
        public int Search(XS_authorType collectionItem_in)
        {
            for (int i = 0; i < cols_.Count; i++)
            {
                if (
                    (
                                                #if NET_1_1
                        ((XS_authorType)cols_[i])
                                                #else
                        cols_[i]
                                                #endif
                        .IDAuthor
                        ==
                        collectionItem_in.IDAuthor
                    )

                    )
                {
                    return(i);
                }
            }

            return(-1);
        }
Ejemplo n.º 3
0
		public int Search(XS_authorType collectionItem_in) {
			for (int i = 0; i < cols_.Count; i++) {
				if (
					(
						#if NET_1_1
						((XS_authorType)cols_[i])
						#else
						cols_[i]
						#endif
							.IDAuthor
						==
						collectionItem_in.IDAuthor
					)
					
				) {
					return i;
				}
			}

			return -1;
		}
Ejemplo n.º 4
0
		public void CopyFrom(XS_authorType authorType_in) {
			int _index = -1;

			idauthor_ = authorType_in.idauthor_;
			name_ = authorType_in.name_;
			copyrighttext_ = authorType_in.copyrighttext_;
			feedbackemailaddress_ = authorType_in.feedbackemailaddress_;
		}