Hello,
may be this is a very simple question, but I can't find any answer. To initialize a class to an object I know some ways for new, like this
class A; //for short I don't define A
A a = new A();
or
A a = new A(1, "nnn");
or
A a = new A()
A a = new A()
{
x = 1,
s = "nnn"
};
or "anonym"
or "anonym"
var pet = new { x = 1, s = "nnn" };
but what means this point "." in the example downstairs after "new WebHostBuilder()" ?
- var host = new WebHostBuilder()
- .UseKestrel()
- .UseContentRoot(Directory.GetCurrentDirectory())
- .UseIISIntegration()
- .UseStartup
() - .Build();

Amit GuptaPosted Nov 25, 2016, 3:32 AM
}// set the value for properties// Prints the data to console}// Using the method chaining to assign & print data with a single line}Harald E. LangnerPosted Nov 24, 2016, 1:50 PM
Bikesh SrivastavaPosted Nov 24, 2016, 1:18 PM
Amit GuptaPosted Nov 24, 2016, 12:07 PM