[Mono-osx] MonoMac: patch to add coredata

Miguel de Icaza miguel at novell.com
Fri Jul 16 21:44:29 EDT 2010


Hello,

>
> * added CoreDataEnum.cs
>

I am committing a different version.

In general with C# Enums there is no need to repeat information in the enum
values that are part of the enumeration name.

For example, this:

public enum FooBar {
    FooBarOpen,
    FooBarClose
}

should be turned into:

public enum FooBar {
    Open, Close
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-osx/attachments/20100716/534f6d64/attachment.html 


More information about the Mono-osx mailing list