Mike ONeill
Tomato Guru
    
South Africa
103 Posts |
Posted - Feb 11 2014 : 02:42:06 AM
|
Hi
I just tried to Create a new class from a statement in C#
Dog dog = new Dog();
I hovered over the first Dog , CTR ALT C and I get a class name separated by Namespaces , but with colons not dots , this is illegal in C# as far as I know, except for Global namespaces . I assume its C Syntax ?
I get an error saying "{ expected " at the colon position Mike
using System;
namespace BrewQIS:Model:Repositories { public class Dog { public Dog() { }
} }
|
|