我正在尝试在PowerShell中添加自定义类型,如下所示:
Add-Type @'
public class MyType {
public string name;
public string type;
public hashtable data;
public string category;
}
'@
但是,类型哈希表,字典不存在。我已经四处寻找有关此事的例子,但找不到任何例子。
可能会添加,我不想使用Add-Member。
有什么想法吗?
/帕特里克
答案 0 :(得分:1)
2件事:
InputStream con = session.getClass().getResourceAsStream("C:/pqrs.properties");
if(con== null)
{
System.out.println("FLAG FILE NOT FOUNDFIND NOT FOUND!!!!!!!!!!!");
}else
{
System.out.println("FLAG FILE FOUND !!!!!!!!FIND FOUND");
}
Properties ff = new Properties();
ff.load(con);
语句,以便编译器可以解析完整类型名称try this..
<script>
var app = angular.module("myApp", [])
.controller("myControllerSubmit", function ($scope, $http) {
$scope.submit = function () {
var Employee = { empID: $scope.empId, Name: $scope.empName, Gender: $scope.empGender }
$http.post( 'http://localhost:58365/home/saveEmpData', json.Stringify(Employee) ).success(function (response,status,headers,config) {
$scope.data1 = response.data;
}).error (function(){
alert("error")
});
}
})
</script>