Blog Of Sem: VISUAL STUDIO C# DLL CLASS YORUM EKLEMEK

VISUAL STUDIO C# DLL CLASS YORUM EKLEMEK

Önce dll projesinde debug project propertiesde build ekranında XML documantion filei tikle
ve methodların üzeirne bunu yazınca otomatik tanımlanır ///
ve gerekeni içine yaz
Ör:
        /// <summary>
        /// <para>Aciklama: Önce ana projeye add devitem Progress Indicator ekle adını PROGRESSFORM yap</para>
        /// Ornek Kod:BMS_DLL.DX.SPLASHSCREENBASLA(typeof(PROGRESSFORM), this, "test");
        /// </summary>
        public static void SPLASHSCREENBASLA(Type _PROGRESSFORM, Form _this, string _NEYAPILIYOR)
        {
            try
            {
                SplashScreenManager.ShowForm(_this, _PROGRESSFORM , true, true, false);
                SplashScreenManager.Default.SetWaitFormCaption(_NEYAPILIYOR);
                SplashScreenManager.Default.SetWaitFormDescription("");
            }
            catch { }
        }

burdaki para ayrı satır anlamındadır