コード例 #1
0
 public SettingInfo(Guid id, CSharpTypes type, string code, string valueString, byte[] valueBinary)
 {
     this.id = id;
     this.type = type;
     this.code = code;
     this.valueString = valueString;
     this.valueBinary = valueBinary;
 }
コード例 #2
0
 public static string ConvertApexTypeToCSharp(string identifier) =>
 CSharpTypes.TryGetValue(identifier, out var result) ? result : identifier;