You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-69Lines changed: 4 additions & 69 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,29 +85,9 @@ For example:
85
85
86
86
# Support
87
87
88
-
## Constants/Variables
89
-
90
-
#### Examples
91
-
92
-
|TS|C#|GO|Visual Basic
93
-
|-|-|-|-|
94
-
|`const CONST_VALUE: string = "THIS IS A CONSTANT";`|`public const string CONST_VALUE = "THIS IS A CONSTANT";`|`const CONST_VALUE string = "THIS IS A CONSTANT"`|`Const CONST_VALUE As String = "THIS IS A CONSTANT"`|
95
-
|`let foo: number = 50;`|`public static int Foo = 50;`|`var Foo int = 50`|`Dim Foo AS Integer = 50`
96
-
|`var foo: number = 50;`|`public static int Foo = 50;`|`var Foo int = 50`|`Dim Foo AS Integer = 50`
97
-
98
-
- In C# those are wrapped into a static class
99
-
100
-
```csharp
101
-
namespacexxx
102
-
{
103
-
publicstaticclassHelper
104
-
{
105
-
publicstaticintFoo=50;
106
-
}
107
-
}
108
-
```
88
+
Fully documented support at [Wiki](https://github.com/southworks/codeverter/wiki)
109
89
110
-
#### Support
90
+
##Constants/Variables
111
91
112
92
||C#|GO|Visual Basic|
113
93
|-|-|-|-|
@@ -116,16 +96,6 @@ namespace xxx
116
96
117
97
## Enums
118
98
119
-
#### Examples
120
-
121
-
|TS|C#|GO|Visual Basic|
122
-
|-|-|-|-|
123
-
|<pre><code>export enum Animals {<div> Dog = 1,</div><div> Cat = 2</div>}</code></pre>|<pre><code>public enum Animals<div>{</div><div> Dog = 1,</div><div> Cat = 2</div>}</code></pre>|<pre><code>const (<div> Dog int = 1</div><div> Cat = 2</div>)</code></pre>|<pre><code>Enum Animals<div></div><div> Dog = 1</div><div> Cat = 2</div>End Enum</code></pre>|
124
-
|<pre><code>export enum Animals {<div> Dog = "dog",</div><div> Cat = "cat"</div>}</code></pre>|<pre><code>public enum Animals<div>{</div><div> Dog = "dog",</div><div> Cat = "cat"</div>}</code></pre>|<pre><code>const (<div> Dog string = "dog"</div><div> Cat = "cat"</div>)</code></pre>|<pre><code>Enum Animals<div></div><div> Dog</div><div> Cat</div>End Enum</code></pre>|
@@ -200,14 +142,6 @@ _*Naming convention for pubic or private, protected is considered private_
200
142
201
143
### Methods/Functions
202
144
203
-
#### Examples
204
-
205
-
||C#|GO|Visual Basic|
206
-
|-|-|-|-|
207
-
|<pre><code>public foo(): void {<div> /* a lot of work! */ </div>}</code></pre>|<pre><code>public void Foo()<div>{</div><div> ///\* a lot of work! */</div><div> return;</div>}</code></pre>|<pre><code>func (f \*Cat) Foo() {<div> ///\* a lot of work! */</div><div> return</div>}</code></pre>|<pre><code>Public Sub Foo()<div></div><div> ' /* a lot of work! */</div><div></div>End Sub</code></pre>
0 commit comments