如何在microsoft bot模拟器中隐藏枚举值?

时间:2016-12-29 06:58:39

标签: asp.net-web-api

enter image description here

如何避免像1,2这样的枚举值...我想隐藏它,我想显示我的自定义字符串

public enum Qst1
{
    Interact_with_many_including_strangers = 1,
    Interact_with_a_few_known_to_you
}

public enum Qst2
{
    Realistic_than_speculative = 1,
    Speculative_than_realistic

}

[Prompt("At a party do you: {||}")]
public Qst1 A1;
[Prompt(" Are you more:{||}")]
public Qst2 A2;
[Prompt("Is it worse to:{||}")]
public Qst3 A3;
return _order.Field(nameof(Questions.A1)).Field(nameof(Questions.A2))

0 个答案:

没有答案