Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
with object1
.name = "the name";
.top = 123;
.left = 100;
.someotherparam = "aaa";
end with
object1.name = "the name";
object1.top = 123;
object1.left = 100;
object1.someotherparam = "aaa";
ObjectType o1 = object1;
o1.name = "the name";
o1.top = 123;
o1.left = 100;
o1.someotherparam = "aaa";
obj1.Property.Property.Property.Property1 = value1;
obj1.Property.Property.Property.Property2 = value2;
object obj = obj1.Property.Property.Property;
obj.Property1 = value1;
obj.Property2 = value2;
obj1.Property.Method().Property.Property1 = value1;
obj1.Property.Method().Property.Property2 = value2;
object obj = obj1.Property.Method();
obj.Property.Property1 = value1;
obj.Property.Property2 = value2;
foreach ( object obj in obj1.ArrayMethod() )
{
// code here
}
Array obj2 = obj1.ArrayMethod();
foreach ( object obj in obj2 )
{
// code here
}
They did an incredible job with intellisense
I humbly disagree. A nice to have for GUI controls or classes that you have not built.Third of all - the with statement was and still is essential - C# is just using existing logics to substitute for it, giving the developer more work.