發表文章

目前顯示的是 3月 27, 2019的文章

download file from FileNet IDM using IDM objects

圖片
0 i have code to download file from FileNet IDM server. using IDM docid but i want to pass property field and download it. what idmobjects should i use it.? please help on this. am new to IDM. fnObjectType = IDMObjects.idmObjectType.idmObjTypeDocument; int pagec = 0; try { fnGenericObj = fnLibrary.GetObject(fnObjectType, argDocid, objMissing, objMissing, objMissing); fnDoc = (IDMObjects.Document)fnGenericObj; pagec = fnDoc.PageCount; } c#-4.0 filenet-panagon filenet-idm share | improve this question edited Nov 23 '18 a

Hyderabad State Praja Party

Hyderabad State Praja Party , a political party in the Hyderabad State. HSPP was formed in 1951 when Tanguturi Prakasam and Acharya N. G. Ranga broke away from the Indian National Congress. In April 1951 Ranga broke away and formed the Krishikar Lok Party. In June the same year the HSPP of Prakasam merged with Kisan Mazdoor Praja Party. See also Indian National Congress breakaway parties This page is only for reference, If you need detailed information, please check here

cast class into another class or convert class to another

圖片
29 16 my question is shown in this code I have class like that public class maincs { public int a; public int b; public int c; public int d; } public class sub1 { public int a; public int b; public int c; } public void methoda (sub1 model) { maincs mdata = new maincs(){a = model.a , b = model.b , c= model.c} ; // is there is a way to directly cast class sub1 into main like that mdata = (maincs) model; } c# casting class type-conversion share | improve this question edited Sep 15 '16 at 9:31 Dor Cohen 10.6k 18 67 142