C# AppDomain explained

Поділитися
Вставка
  • Опубліковано 27 вер 2024
  • For more such videos visit www.questpond.com
    For more such videos subscribe www.youtube.co...
    See our other Step by Step video series below :-
    Learn C# Step by Step goo.gl/FNlqn3
    Learn Design Pattern Step by Step:- goo.gl/eJdn0m
    Learn Angular tutorial step by step tinyurl.com/yc...
    Learn MVC Core step by step :- tinyurl.com/y9j...
    Learn Azure Step by Step :- tinyurl.com/y6...
    Learn SharePoint Step by Step in 8 hours:- goo.gl/XQKHeP
    Python Tutorial for Beginners:- • Python Tutorial for Be...
    Learn Data Science in 1 hour :- tinyurl.com/y5...
    Learn Power BI Step by Step:- tinyurl.com/y6...
    Learn MSBI Step by Step in 32 hours:- goo.gl/TTpFZN
    Learn SQL Server Step by Step tinyurl.com/ja4...
    Learn Tableau step by step :- tinyurl.com/kh...
    In this video we will try to understand why we need C# Appdomain and also we will see a practical example of the same.

КОМЕНТАРІ • 17

  • @dnfvideo
    @dnfvideo  3 роки тому

    30 Important C# Interview Questions : ua-cam.com/video/BKynEBPqiIM/v-deo.html
    25 Important ASP.NET Interview Questions : ua-cam.com/video/pXmMdmJUC0g/v-deo.html
    25 Angular Interview Questions : ua-cam.com/video/-jeoyDJDsSM/v-deo.html
    20+ SQL Server Interview Questions : ua-cam.com/video/SEdAF8mSKS4/v-deo.html
    5 MSBI Interview Questions : ua-cam.com/video/5E815aXAwYQ/v-deo.html

  • @nazrussel
    @nazrussel 6 років тому

    Thanks to the Author for such helpful tutorials. When I was doing watch and do practice, the follwoing commented out line was producing exception and I found a solution for that. Just wanted to share, if anyone get helps from it -
    If System.IO.FileNotFound Exception throws then use the follwoing alternative code.
    //secureDomain.CreateInstanceFromAndUnwrap(thirdParty.Assembly.FullName, thirdParty.FullName);
    var asname = Assembly.GetCallingAssembly().FullName;
    secureDomain.CreateInstance(asname, thirdParty.FullName);

  • @TT-ud5gf
    @TT-ud5gf 5 років тому

    Note for myself: read Marshal By Ref as it is needed to communicate between AppDomain. It also required marking the class with attribute Serializable.

  • @neolebese3988
    @neolebese3988 5 років тому

    Good Video.Can you limit how much memory an app domain can use ? It will be cool to load an assembly at runtime using Activator and limit its memory usage on an app-domain.

  • @samitarai4449
    @samitarai4449 7 років тому +1

    excellent explanation in entire universe sir

  • @abcdeereijgfhd3215
    @abcdeereijgfhd3215 2 роки тому +1

    This is about .NET remoting. .NET is really big topics. will take time to get used to.

  • @myview9923
    @myview9923 4 роки тому

    What will I do if the third party class is compiled and it's not serializable?

  • @Rhodair
    @Rhodair 7 років тому +2

    3 minutes in you mention another video about UI and out of the many things you linked in the description, I don't see it among them

  • @razor23Ukraine
    @razor23Ukraine 5 років тому

    Right!! a good lesson, thanks!

  • @fcis2008
    @fcis2008 4 роки тому

    Awesome video :)

  • @gt0703
    @gt0703 7 років тому

    nice video

  • @MaryamAv
    @MaryamAv 6 років тому

    perfect!

  • @samitarai4449
    @samitarai4449 7 років тому

    excellent explanation in entire universe sir

  • @A.S.R
    @A.S.R 5 років тому

    Do different app domains run as different processes on the OS level

  • @shanpalaniram
    @shanpalaniram 6 років тому +3

    Not clear. What are problems for which the appdomain used to resolve them? You say the appdomain is isolated container then how it is bound with main UI thread?

  • @cheulwoolee2788
    @cheulwoolee2788 5 років тому

    Excellent!