Microsoft.Xades.NoticeNumbers.HasChanged C# (CSharp) 메소드

HasChanged() 공개 메소드

Check to see if something has changed in this instance and needs to be serialized
public HasChanged ( ) : bool
리턴 bool
		public bool HasChanged()
		{
			bool retVal = false;

			if (this.noticeNumberCollection.Count > 0)
			{
				retVal = true;
			}

			return retVal;
		}