Foo.Foo C# (CSharp) Method

Foo() public method

public Foo ( ) : System
return System
    public Foo()
    {
        b = new Bar();
        b.HiThere += myeventhandler;
    }

Usage Example

Example #1
0
        public ActionResult GetAutowriedService()
        {
            var serviceProvider = new AutowiredServiceProvider(_serviceProvider);

            serviceProvider.GetRequiredService <IFooService>().Bar.Bar();
            return(Content($"{Foo.Foo()} , {Foo.Bar.Bar()}"));
        }
All Usage Examples Of Foo::Foo