Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 11, 2021 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d1780bd692e0d9ea6f32a4e62c347f49 to your computer and use it in GitHub Desktop.
Save parzibyte/d1780bd692e0d9ea6f32a4e62c347f49 to your computer and use it in GitHub Desktop.
using System;
namespace App
{
class Programa
{
static void Main(string[] args)
{
string[] arreglo1 = new string[4];
string[] arreglo2 = { "Luis", "Cabrera", "Benito" };
string[] arreglo3 = new string[2] { "Hola", "Mundo" };
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment