This is a discussion on How can I find out the name of the namespace which a program is currently executing? within the C# Programming forums, part of the Software Development category; How can I find out the name of the namespace which a program is currently executing?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Simply convert the form as type object and find the namespace Type t0 = typeof(Form1); MessageBox.Show(t0.Namespace); or Type t1 = this.GetType(); MessageBox.Show(t1.Namespace); |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| System Namespace | kingmaker | C# Programming | 1 | 10-26-2007 05:24 AM |
| namespace - .NET Framework class hierarchy | prasath | ASP and ASP.NET Programming | 1 | 08-18-2007 12:59 AM |
| How to launch Real Player program through my j2me midlet program? | itbarota | J2ME | 1 | 07-25-2007 11:39 PM |
| when the program is executing,how to stop the program and open the cmd window... | bluesky | C# Programming | 1 | 07-25-2007 05:51 AM |
| Executing SQL Server Stored Procedures With PHP - Executing stored procedures | Jeyaseelansarc | PHP Programming | 1 | 07-19-2007 12:23 AM |