コード例 #1
0
ファイル: InvalidOperationError.cs プロジェクト: krpaul/Eeloo
 private static string ConcatTypes(eeObjectType[] types)
 {
     if (types.Length == 1)
     {
         return(ObjectTypeHelpers.ObjectTypeToString(types[0]));
     }
     else
     {
         return(string.Join(", ", types));
     }
 }
コード例 #2
0
 public NoMethodError(string methodName, eeObjectType objType)
     : base("NoMethodError", $"Method with name '{methodName}' does not exist for object of type {ObjectTypeHelpers.ObjectTypeToString(objType)}")
 {
 }
コード例 #3
0
ファイル: NegationError.cs プロジェクト: krpaul/Eeloo
 public NegationError(eeObjectType type, bool not = false)
     : base("NegationError", $"Cannot negate object {(not ? "that is not" : "")} of type {ObjectTypeHelpers.ObjectTypeToString(type)}.")
 {
 }