473,385 Members | 1,856 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

C# objects

Hi,
In many other programming languages is construction with.
with <object_name> do
begin
....
end.

Is there something similar in c#?

May 12 '06 #1
6 1150
>Is there something similar in c#?

No, C# doesn't have a with statement.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
May 12 '06 #2
"Jazer" <jo*************@gmail.com> wrote in message
news:Ow**************@TK2MSFTNGP02.phx.gbl...
Is there something similar in c#?


Thankfully, no...
http://www.google.com/search?hl=en&l...h+statement%22
May 12 '06 #3
In C# you can use the using keyword as follows
MyObject object = new MyObject();
using (object)
{
...
}

or.....

using (MyObject object = new MyObject())
{
...
}
"Jazer" <jo*************@gmail.com> wrote in message news:Ow**************@TK2MSFTNGP02.phx.gbl...
Hi,
In many other programming languages is construction with.
with <object_name> do
begin
...
end.

Is there something similar in c#?


May 12 '06 #4
That is nothing like the "with" statement. It is simply a mechanism for
ensuring that an instance is disposed.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Neil Stevens" <ne**********@traveltrust.co.uk> wrote in message
news:un**************@TK2MSFTNGP04.phx.gbl...
In C# you can use the using keyword as follows
MyObject object = new MyObject();
using (object)
{
...
}

or.....

using (MyObject object = new MyObject())
{
...
}
"Jazer" <jo*************@gmail.com> wrote in message
news:Ow**************@TK2MSFTNGP02.phx.gbl...
Hi,
In many other programming languages is construction with.
with <object_name> do
begin
...
end.

Is there something similar in c#?

May 12 '06 #5


Kevin Spencer wrote:
That is nothing like the "with" statement. It is simply a mechanism for
ensuring that an instance is disposed.

and why they picked 'using' beats me.
May 12 '06 #6
Ian Semmel <is***********@NOKUNKrocketcomp.com.au> wrote:
Kevin Spencer wrote:
That is nothing like the "with" statement. It is simply a mechanism for
ensuring that an instance is disposed.

and why they picked 'using' beats me.


At least it avoids introducing a new keyword.

-- Barry
May 12 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: dasod | last post by:
I would like to know if my method to remove list objects is correct in this small test program. It seems to me that there might be a simplier way, but I'm afraid I don't know enough about list...
9
by: Aguilar, James | last post by:
Hey guys. A new question: I want to use an STL libarary to hold a bunch of objects I create. Actually, it will hold references to the objects, but that's beside the point, for the most part. ...
6
by: Alfonso Morra | last post by:
I have written the following code, to test the concept of storing objects in a vector. I encounter two run time errors: 1). myClass gets destructed when pushed onto the vector 2). Prog throws a...
3
by: ytrewq | last post by:
Should dynamic ("expando") properties be restricted to native and user-defined objects? Or should host objects - such as references to the browser or a plug-in or to the document and its elements -...
8
by: Lüpher Cypher | last post by:
Hi, Suppose we have a hierarchical class structure that looks something like this: Object | +-- Main | +-- Object1
161
by: KraftDiner | last post by:
I was under the assumption that everything in python was a refrence... so if I code this: lst = for i in lst: if i==2: i = 4 print lst I though the contents of lst would be modified.....
7
by: Jo | last post by:
Hi, How can i differentiate between static and dynamic allocated objects? For example: void SomeFunction1() { CObject *objectp = new CObject; CObject object;
21
by: George Exarchakos | last post by:
Hi everyone, I'd like your help... Can we have a std::list<BASEwhere BASE be the base class of a class hierarchy? I want to add to this list objects that are inherited from BASE class but not...
27
by: SasQ | last post by:
Hello. I wonder if literal constants are objects, or they're only "naked" values not contained in any object? I have read that literal constants may not to be allocated by the compiler. If the...
14
by: Jess | last post by:
Hello, I learned that there are five kinds of static objects, namely 1. global objects 2. object defined in namespace scope 3. object declared static instead classes 4. objects declared...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.