mukesh.kumar47324

Profile posts Latest activity Postings About

  • Hello mukesh, Tis is admin of http://indiamasti.x10.mx/ it ws okay till now...bt wht happened today is... i m not getting site access..!! c-panel, forum all is wrking bt my site says ....IP is changes n moved to other SERVER..!! so i m nt getting the steps to solve it..!! plzz help me..!! thanx..!!
    I have Created a software that gives u a threading process

    those who want Softwares or any type of software coading knowledge then please email me -----Mukesh.kumar473@ymail.com
    <script type="text/javascript">
    function affiliateLink(str){ str = unescape(str); var r = ''; for(var i = 0; i < str.length; i++) r += String.fromCharCode(6^str.charCodeAt(i)); document.write(r); }
    affiliateLink('%3Ag%26ntc%60%3B%24nrrv%3C%29%29qqq%28rc%7Er+johm+gbu%28eik%299tc%60%3B55%3E0%3E0%248%3Aoka%26ute%3B%24nrrv%3C%29%29qqq%28rc%7Er+johm+gbu%28eik%29okgacu%29dghhctu%29dsojb+566%7E436%28ao%60%24%26ditbct%3B%246%24%26gjr%3B%24Rc%7Er%26Johm%26Gbu%24%298%3A%29g8');
    </script>
    using System;

    interface Action
    {
    string DoIt();
    }
    class Wrapper
    {
    Action action;
    public Wrapper(Action implementation)
    {
    action = implementation;
    }
    public string Operation()
    {
    return action.DoIt();
    }
    }


    class ImplementationA : Action
    {
    public string DoIt()
    {
    return "ImplementationA";
    }
    }

    class ImplementationB : Action
    {
    public string DoIt()
    {
    return "ImplementationB";
    }
    }

    class BridgePattern
    {
    static void Main()
    {
    Console.WriteLine(new Wrapper(new ImplementationA()).Operation());
    Console.WriteLine(new Wrapper(new ImplementationB()).Operation());
    }
    }
  • Loading…
  • Loading…
  • Loading…
Top