Creating a customized namespace in C# asp.net
To preface, I need to say that I am still in th开发者_StackOverflowe learning stagings of asp.net
I need to create a custom namespace where I can place my DataObject.cs file
The namespace is .Components.DataHow do I go about doing this?
Thanks in advance
Put your class inside a namespace Components.Data { ... }
block.
精彩评论