473,396 Members | 1,834 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,396 software developers and data experts.

Nmaespace

I want to create a namespace. I don't know how to do it. I add a class in
my project. Should I add keyword namespace myNmaspace to it. or how can I do
it.

I want three files

myNmaespace.fileA
myNmaespace.fileB
myNmaespace.fileC
Where fileA.ca, fileB.cs,fileC.cs are my Classfiles.
Sep 14 '07 #1
2 1144
On Sep 14, 7:54 pm, bobby <bo...@discussions.microsoft.comwrote:
I want to create a namespace. I don't know how to do it. I add a class in
my project. Should I add keyword namespace myNmaspace to it. or how can I do
it.

I want three files

myNmaespace.fileA
myNmaespace.fileB
myNmaespace.fileC
Where fileA.ca, fileB.cs,fileC.cs are my Classfiles.
Just surrond the class definition with the namespace definition, like
this:

namespace MyNameSpace
{
class MyClass
{
...
}
}

Sep 14 '07 #2
re:
!I want to create a namespace. I don't know how to do it.

Just write the namespace's name in the different files,
and place all the files in the App_Code directory.

namespace GeometricShapes
{
public class Square
{
public double Side;
}
}

class Geometry
{
void ShowSquare()
{

// in this class you call the Square class of the GeometricShapes namespace :

GeometricShapes.Square sqr = GeometricShapes.Square();
sqr.Side = 24.55;
}
}

If you want a *class* to span several files, make sure they're declared as *partial* classes :

With Partial declarations for a class you can split the class into several files:

MyClass1.cs:

public partial class MyClass
{
public void method1()
{
// ...whatever you code here
}
}
MyClass2.cs:

public partial class MyClass
{
public void method2()
{
}
}

Juan T. Llibre, asp.net MVPasp.net faq : http://asp.net.do/faq/foros de asp.net, en español :
http://asp.net.do/foros/======================================"bobby" <bo***@discussions.microsoft.comwrote in message
news:21**********************************@microsof t.com...
>I want to create a namespace. I don't know how to do it. I add a class in
my project. Should I add keyword namespace myNmaspace to it. or how can I do
it.

I want three files

myNmaespace.fileA
myNmaespace.fileB
myNmaespace.fileC
Where fileA.ca, fileB.cs,fileC.cs are my Classfiles.



Sep 14 '07 #3

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

Similar topics

1
by: msindhusreejith | last post by:
#include<iostream> #include<conio> nmaespace num { void disp(int x) { cout<<x; } } void main()
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: 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
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,...
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...
0
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,...

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.