NAPS2.Scan.AutoSaveSettings.Clone C# (CSharp) 메소드

Clone() 개인적인 메소드

private Clone ( ) : AutoSaveSettings
리턴 AutoSaveSettings
        internal AutoSaveSettings Clone()
        {
            return (AutoSaveSettings) MemberwiseClone();
        }

Usage Example

예제 #1
0
파일: ScanProfile.cs 프로젝트: gas3/twain
        public ScanProfile Clone()
        {
            var profile = (ScanProfile)MemberwiseClone();

            if (profile.AutoSaveSettings != null)
            {
                profile.AutoSaveSettings = AutoSaveSettings.Clone();
            }
            return(profile);
        }
All Usage Examples Of NAPS2.Scan.AutoSaveSettings::Clone