Results 1 to 2 of 2

Thread: [2.0] using global::

  1. #1

    Thread Starter
    Fanatic Member Bombdrop's Avatar
    Join Date
    Apr 2001
    Location
    St Helens, England, UK
    Posts
    667

    [2.0] using global::

    Hi all recently discover a new application helper for mapping out a database within your c# code TDO Typed Data Object in the code it create it has the following

    Code:
        using global::Tdo.Common.Programmability;
    Now i now it is to do with referencing the TDO.Dll but I'm unsure as to what
    using global:: means as i have never come across this syntax and not having much luck researching this on the web. Any help would be appreciated.

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: [2.0] using global::

    It's just another way of saying that whatever is before it is a namespace. So you can replace that with

    using global.Tdo.Common.Programmability;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width