Cosmos/source2/Cosmos.Assembler.XSharp/Address.cs
2012-01-23 15:17:54 +00:00

15 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Assembler;
namespace Cosmos.Assembler.XSharp {
public class Address {
public static implicit operator Address(string aLabel) {
return new AddressDirect(aLabel);
}
}
}