diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2018-11-06 10:39:14 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2018-12-19 16:51:15 +0100 |
commit | d74a4df9946b69f769cd0ad40d4414c90d19a515 (patch) | |
tree | 7d4de6983ac9b319085fd84f559d2f592fc215b3 /unsorted/eina/EinaArray01.cs | |
parent | 656b746be7ffb834a31d0a693071f9eebba186c6 (diff) |
csharp examples: Adapt to new classes syntax
Summary: Mainly use PascalCase Namespaces and Classes and proper event names.
Test Plan: Check all examples still build.
Reviewers: lauromoura, vitor.sousa, felipealmeida, bu5hm4n
Reviewed By: bu5hm4n
Differential Revision: https://phab.enlightenment.org/D7479
Diffstat (limited to 'unsorted/eina/EinaArray01.cs')
-rw-r--r-- | unsorted/eina/EinaArray01.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unsorted/eina/EinaArray01.cs b/unsorted/eina/EinaArray01.cs index 4ac4a778..944c0bd3 100644 --- a/unsorted/eina/EinaArray01.cs +++ b/unsorted/eina/EinaArray01.cs | |||
@@ -4,7 +4,7 @@ public class ExampleEinaArray01 | |||
4 | { | 4 | { |
5 | public static void Main() | 5 | public static void Main() |
6 | { | 6 | { |
7 | eina.Config.Init(); | 7 | Eina.Config.Init(); |
8 | 8 | ||
9 | var strings = new string[]{ | 9 | var strings = new string[]{ |
10 | "helo", "hera", "starbuck", "kat", "boomer", | 10 | "helo", "hera", "starbuck", "kat", "boomer", |
@@ -13,7 +13,7 @@ public class ExampleEinaArray01 | |||
13 | "skulls", "bulldog", "flat top", "hammerhead", "gonzo" | 13 | "skulls", "bulldog", "flat top", "hammerhead", "gonzo" |
14 | }; | 14 | }; |
15 | 15 | ||
16 | var array = new eina.Array<string>(20U); | 16 | var array = new Eina.Array<string>(20U); |
17 | 17 | ||
18 | // Push new elements | 18 | // Push new elements |
19 | foreach (string s in strings) | 19 | foreach (string s in strings) |