getkeywords() public method

public getkeywords ( ) : List
return List
示例#1
0
文件: Program.cs 项目: shranjan/pinac
 public List<string> getKeywords()
 {
     Keywords obj = new Keywords();
     return obj.getkeywords();
 }
示例#2
0
 static void Main()
 {
     Keywords keys = new  Keywords();
     List<string> k = new List<string>();
    k = keys.getkeywords();
 }