Allows for overloaded functions in CSharp to be used, initial work on handling CSHarp operators

This commit is contained in:
2018-11-21 13:08:41 +01:00
parent fe4a8d25ad
commit 0702b9f271
15 changed files with 257 additions and 6 deletions

View File

@@ -31,5 +31,10 @@ namespace Upsilon.BaseTypes.Number
{
return Value;
}
public override System.Type GetCSharpType()
{
return typeof(double);
}
}
}

View File

@@ -34,5 +34,10 @@ namespace Upsilon.BaseTypes.Number
{
return Value;
}
public override System.Type GetCSharpType()
{
return typeof(long);
}
}
}