Wiki

Changes between Version 9 and Version 10 of CreateNewProjectInXamarinStudio

Show
Ignore:
Timestamp:
02/27/14 20:36:04 (11 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CreateNewProjectInXamarinStudio

    v9 v10  
    104104You can remove the "Console.readLine" from the program. It's there so that when you run the program from the IDE, the new output window will be "paused" so you can read it. 
    105105 
     106= Default Namespaces = 
     107 
     108The Cobra language has [wiki:Namespace namespaces] which are either declared in code: 
     109{{{ 
     110#!cobra 
     111namespace MyCompany.MyProject.Lib 
     112 
     113class Thing 
     114 
     115    pass 
     116}}} 
     117 
     118Or specified on the command line: 
     119{{{ 
     120cobra -default-namespace:MyCompany.MyProject.Lib ... 
     121}}} 
     122 
     123In the IDE, you can right click the project and choose "Options" > "General" > "Main Settings" and see a field for "Default Namespace". New projects in Xamarin Studio have this configured to match the project name. You can change it or clear it out as you prefer. 
     124 
     125 
    106126= Where to go from here = 
    107127