473,466 Members | 1,619 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

#region through CODEDOM

I want to generate #region #endregion statements through codedom.

Nov 15 '05 #1
7 3676
Hi Osvaldo,

I don't think you can, since #region might be language specific.

--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
I want to generate #region #endregion statements through codedom.
Nov 15 '05 #2
that's why CodeSnippets exists. The thing is I don't know where to insert an CodeSnippetStatement/Expression 'cause they must be added to a collection like when you do

SomeMethod.Statements.Add(MyCodeSnippetStatement)

since #region statements are floating "freely" in the code, and do not belong to any structure like a class or something else, i dont know where to put it.

I thought the namespace or the compilaton unit would have a "CodeLines" collection but couldn't find it. By the way... is LinePragma something I can use. Google return just 5 pages about it.

Thanks

"Miha Markic" <miha at rthand com> escribió en el mensaje news:em**************@TK2MSFTNGP12.phx.gbl...
Hi Osvaldo,

I don't think you can, since #region might be language specific.

--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
I want to generate #region #endregion statements through codedom.



Nov 15 '05 #3
and #region is not languaje specific Miha, it exists in both VB and C#,
though it's implemented in different ways.

//C# sample
#region Description
...
#endregion

'VB Sample
#region "Description"
...
#end region

"Miha Markic" <miha at rthand com> escribió en el mensaje
news:em**************@TK2MSFTNGP12.phx.gbl...
Hi Osvaldo,

I don't think you can, since #region might be language specific.

--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
I want to generate #region #endregion statements through codedom.

Nov 15 '05 #4
Just because these two languages support the construct does not mean that it
is not language specific.

There are lots of languages out there (Perl, COBAL, Pascal, VB, C#, C++,
Java, etc.) Not all of these languages necessarily support defining of
regions.

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:ON**************@TK2MSFTNGP10.phx.gbl...
and #region is not languaje specific Miha, it exists in both VB and C#,
though it's implemented in different ways.

//C# sample
#region Description
...
#endregion

'VB Sample
#region "Description"
...
#end region

"Miha Markic" <miha at rthand com> escribió en el mensaje
news:em**************@TK2MSFTNGP12.phx.gbl...
Hi Osvaldo,

I don't think you can, since #region might be language specific.

--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
I want to generate #region #endregion statements through codedom.


Nov 15 '05 #5
Peter Rilling wrote:
There are lots of languages out there (Perl, COBAL, Pascal, VB, C#,
C++, Java, etc.) Not all of these languages necessarily support
defining of regions.


Isn't #region IDE-specific?

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
Nov 15 '05 #6
yeah, that's a good point. I get the idea.
Anyways, CodeSnippet(Statement/Expression) are CodeDom classes designed to
achieve these language specific features. Do you know of any way to generate
this sentence?

Thanks
"Peter Rilling" <pe***@nospam.rilling.net> escribió en el mensaje
news:u6**************@tk2msftngp13.phx.gbl...
Just because these two languages support the construct does not mean that it is not language specific.

There are lots of languages out there (Perl, COBAL, Pascal, VB, C#, C++,
Java, etc.) Not all of these languages necessarily support defining of
regions.

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:ON**************@TK2MSFTNGP10.phx.gbl...
and #region is not languaje specific Miha, it exists in both VB and C#,
though it's implemented in different ways.

//C# sample
#region Description
...
#endregion

'VB Sample
#region "Description"
...
#end region

"Miha Markic" <miha at rthand com> escribió en el mensaje
news:em**************@TK2MSFTNGP12.phx.gbl...
Hi Osvaldo,

I don't think you can, since #region might be language specific.

--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com

"Osvaldo Bisignano" <va*************@yahoo.com.ar> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
I want to generate #region #endregion statements through codedom.



Nov 15 '05 #7
Hi Frank,
"Frank Oquendo" <fr****@acadxpin.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Peter Rilling wrote:
There are lots of languages out there (Perl, COBAL, Pascal, VB, C#,
C++, Java, etc.) Not all of these languages necessarily support
defining of regions.


Isn't #region IDE-specific?


Not really. It is a part of source code thus the compiler has to deal with
it.
It is true that it is usefull only if IDE uses it though.

--
Miha Markic - RightHand .NET consulting & development
miha at rthand com
www.rhand.com
Nov 15 '05 #8

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

Similar topics

0
by: Ron Bullman | last post by:
Hi, I havent been able to find any documentation about @ in the CodeDom context. The problem is when generating C# code from CodeDom it will associate a @-tag with all C# specific types. Why?...
0
by: Osvaldo Bisignano | last post by:
Where do I put my Snippets ? How do I generate a #region #endregion expresion/statement? I would say : "in the Compilation unit", "in the namespace", cause they can't go inside a class / member. ...
0
by: Osvaldo Bisignano | last post by:
How can I generate through CodeDom the #region #endregion statement. Could not find it with Snippet nor Statement Thanks
2
by: Guillaume | last post by:
I don't think I'm the only one with this challenge so… I made code with the CodeDom classes and made code to create a new solution and a new project Now I want to get the codedom code in the new...
1
by: John Livermore | last post by:
Hello, We have an application that uses CodeDom for dynamic in-memory compilation of code. The same code (library) is used by both an ASP.net web site and a Windows Service. The code runs fine...
9
by: lee.chappers | last post by:
How can I make the CodeDom generate the following C# method? protected sealed override void Test() { } I've tried using: domMethod.Attributes = MemberAttributes.Override |...
6
by: moondaddy | last post by:
will CodeDom create XAML windows or just regular windows forms? If so, how to I tell it to create a xaml window instead of a windows form? thanks -- moondaddy@noemail.noemail
2
by: CodeMonkey775 | last post by:
I'm having problems passing a variable to a method which is executed and compiled using CodeDom. The situation is I have a List<CellData> with cells, each containing a formula (like Excel). I am...
1
by: =?Utf-8?B?QU1lcmNlcg==?= | last post by:
I may have painted myself into a corner with GenerateInMemory=true. My app need a custom user step. Users want to code (sort of - they are not programmers) some refinements to a search...
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...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.