473,830 Members | 2,126 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

#region through CODEDOM

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

Nov 15 '05 #1
7 3711
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******** ******@TK2MSFTN GP09.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 CodeSnippetStat ement/Expression 'cause they must be added to a collection like when you do

SomeMethod.Stat ements.Add(MyCo deSnippetStatem ent)

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******** ******@TK2MSFTN GP12.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******** ******@TK2MSFTN GP09.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 "Descriptio n"
...
#end region

"Miha Markic" <miha at rthand com> escribió en el mensaje
news:em******** ******@TK2MSFTN GP12.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******** ******@TK2MSFTN GP09.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******** ******@TK2MSFTN GP10.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 "Descriptio n"
...
#end region

"Miha Markic" <miha at rthand com> escribió en el mensaje
news:em******** ******@TK2MSFTN GP12.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******** ******@TK2MSFTN GP09.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(Sta tement/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.r illing.net> escribió en el mensaje
news:u6******** ******@tk2msftn gp13.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******** ******@TK2MSFTN GP10.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 "Descriptio n"
...
#end region

"Miha Markic" <miha at rthand com> escribió en el mensaje
news:em******** ******@TK2MSFTN GP12.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******** ******@TK2MSFTN GP09.phx.gbl...
I want to generate #region #endregion statements through codedom.



Nov 15 '05 #7
Hi Frank,
"Frank Oquendo" <fr****@acadxpi n.com> wrote in message
news:%2******** ********@tk2msf tngp13.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
1928
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? And how to configure the CodeDom to generate code without @-tags? Ron A short example follows whic produces following kind of output:
0
957
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. Help please. PS: CodeDom is amazing!
0
965
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
2365
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 created IDE instance How can do that? Is there a way to paste the string (CodeDom output) into a class? Out is the a way to insert the created CodeDom instance into the IDE I've seen something like the CodeModel which looks like a different...
1
2297
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 in the web environment, but I get file IO errors related to temporary files when it is run in by the Service. I realize that CodeDom has to create temporary files even when doing in-memory compilation. However, by default, the service runs...
9
3984
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 | MemberAttributes.Family | MemberAttributes.Final;
6
5771
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
2289
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 trying to pass this list to an executable section of code which is compiled during run-time. The formulas are calculated in CodeDom and the result is returned on the same List<CellData> object I passed. The user-defined class which holds the cell data...
1
4900
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 procedure. They can concoct a moderately complex boolean expression, and that suffices. I will take their statements, add top and bottom text, and now I can do a CodeDom compile. I generate an assembly via CodeDom with GenerateInMemory. I make a...
0
9781
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9641
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10477
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10522
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10197
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9310
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5777
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4408
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 we have to send another system
2
3956
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.