示例#1
0
 private Option(Identifier identifier, OptionValue optionValue)
 {
     Identifier  = identifier;
     OptionValue = optionValue;
 }
示例#2
0
 public static Option From(Identifier identifier, OptionValue optionValue)
 {
     return(new Option(identifier, optionValue));
 }