1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-28 20:46:00 +02:00

Renamed System.Collections.Generic to System.Collections

This commit is contained in:
Brian Fiete 2020-04-29 06:40:03 -07:00
parent 4cb9791845
commit dbd9b32e3f
281 changed files with 368 additions and 341 deletions

View file

@ -3,41 +3,29 @@
using System;
using System.Diagnostics;
using System.Threading;
using System.Collections.Generic;
struct Smibbs
{
public int16 mX = 11;
public int16 mY = 22;
public int16 mZ = 33;
}
namespace PropertyStructCrash
{
struct B
{
public int c;
}
struct A
{
public B Prop { get; set; }
}
class Program
{
public static void Main()
{
var c = '¥';
}
}
}
using System.Collections;
struct Blurg
{
public static void Hey()
{
PropertyStructCrash.Program.Main();
}
}
struct StructA
{
public int mA = 99;
}
/*namespace System
{
extension String
{
public String SubText(String input, int position, int length)
{
return 0;
}
}
}*/