[Mmclibrary-cvs] mmclibrary/MMCLib2/Core SnapinBase.cs,1.21,1.22
Brought to you by:
imjimmurphy,
kachalkov
From: Lesley v. Z. <ex...@us...> - 2005-01-22 01:38:43
|
Update of /cvsroot/mmclibrary/mmclibrary/MMCLib2/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26527 Modified Files: SnapinBase.cs Log Message: Added property to check current running version of mmc Index: SnapinBase.cs =================================================================== RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Core/SnapinBase.cs,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** SnapinBase.cs 19 Jan 2005 22:39:15 -0000 1.21 --- SnapinBase.cs 22 Jan 2005 01:38:34 -0000 1.22 *************** *** 67,70 **** --- 67,71 ---- private System.Windows.Forms.ContextMenu _filterMenu; private static ResourceManager _translator; + private MMC_VERSION _mmcVersion; #endregion *************** *** 177,180 **** --- 178,190 ---- } + /// <summary> + /// Cached MMCVersion + /// </summary> + public MMC_VERSION MMCVersion + { + get{ return _mmcVersion;} + set{ _mmcVersion = value; } + } + #endregion |