Changes between Version 2 and Version 3 of UseDirective
- Timestamp:
- 11/22/10 20:31:52 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UseDirective
v2 v3 21 21 22 22 {{{ 23 #!cobra 23 24 use Foo.Bar from SomeLib 24 25 }}} … … 27 28 (for example, the filename has a space or punctuation mark in it). 28 29 {{{ 30 #!cobra 29 31 use Foo.Bar from "My Lib" 30 32 }}} … … 35 37 there are five implicit "use" directives at the top of a Cobra program: 36 38 {{{ 39 #!cobra 37 40 use System 38 41 use System.Collections.Generic … … 58 61 e.g 59 62 {{{ 63 #!cobra 60 64 use Foo.Bar 61 65 # On .Net will look for namespace in Foo.Bar.dll if not already available … … 65 69 66 70 {{{ 71 #!cobra 67 72 use System.Windows.Forms 68 73 use System.Drawing … … 96 101 97 102 {{{ 103 #!cobra 98 104 ... 99 105 use Foo.Bar