Cosmos/source2/Compiler/Cosmos.Compiler.XSharp/DataMember32.cs
2011-07-20 00:03:05 +00:00

15 lines
454 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Compiler.XSharp {
// This is the new type of DataMember, eventually we can eliminate much of the
// code in DataMember (base)
public class DataMember32 : DataMemberBase {
public DataMember32(string aName) : base(aName) {
int[] xValue = { 0 };
UntypedDefaultValue = xValue.Cast<object>().ToArray();
}
}
}