Click here to Skip to main content
15,903,175 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to place write to memory rather than hard-disk? Pin
Tarakeshwar Reddy7-May-07 9:48
professionalTarakeshwar Reddy7-May-07 9:48 
QuestionPrinting GDI Drawing objects Pin
free_soul4247-May-07 4:25
free_soul4247-May-07 4:25 
AnswerRe: Printing GDI Drawing objects Pin
User 24629919-May-07 1:59
professionalUser 24629919-May-07 1:59 
QuestionC# and java Pin
Askalo7-May-07 4:12
Askalo7-May-07 4:12 
AnswerRe: C# and java Pin
Judah Gabriel Himango7-May-07 4:20
sponsorJudah Gabriel Himango7-May-07 4:20 
AnswerRe: C# and java Pin
Luc Pattyn7-May-07 6:42
sitebuilderLuc Pattyn7-May-07 6:42 
NewsRe: C# and java Pin
xuyennk7-May-07 7:59
xuyennk7-May-07 7:59 
AnswerRe: comparing multiples values Pin
szukuro7-May-07 4:13
szukuro7-May-07 4:13 
Questionerer Pin
Paramhans Dubey7-May-07 3:11
professionalParamhans Dubey7-May-07 3:11 
Questioncustom control Pin
D2raghu7-May-07 2:04
D2raghu7-May-07 2:04 
Questioncustom control Pin
D2raghu7-May-07 1:34
D2raghu7-May-07 1:34 
AnswerRe: custom control Pin
Judah Gabriel Himango7-May-07 4:03
sponsorJudah Gabriel Himango7-May-07 4:03 
QuestionPivotTable in C# Pin
phantanagu7-May-07 1:27
phantanagu7-May-07 1:27 
AnswerRe: PivotTable in C# Pin
Seishin#7-May-07 2:44
Seishin#7-May-07 2:44 
QuestionTab Navigation Pin
Geetankit7-May-07 1:08
Geetankit7-May-07 1:08 
AnswerRe: Tab Navigation Pin
Christian Graus7-May-07 1:25
protectorChristian Graus7-May-07 1:25 
Questioncrystal report with Access Pin
merwa6-May-07 23:55
merwa6-May-07 23:55 
AnswerRe: crystal report with Access Pin
Judah Gabriel Himango7-May-07 3:58
sponsorJudah Gabriel Himango7-May-07 3:58 
QuestionDataGridView Pin
sayed836-May-07 23:45
sayed836-May-07 23:45 
AnswerRe: DataGridView Pin
Ch_Shahzad iqbal6-May-07 23:54
Ch_Shahzad iqbal6-May-07 23:54 
QuestionDll reference problem Pin
vamsimohan216-May-07 23:34
vamsimohan216-May-07 23:34 
QuestionRe: Dll reference problem Pin
Sandeep Akhare6-May-07 23:53
Sandeep Akhare6-May-07 23:53 
QuestionRe: Dll reference problem Pin
vamsimohan217-May-07 1:14
vamsimohan217-May-07 1:14 
AnswerRe: Dll reference problem Pin
AFSEKI7-May-07 1:25
AFSEKI7-May-07 1:25 
GeneralRe: Dll reference problem Pin
vamsimohan217-May-07 1:37
vamsimohan217-May-07 1:37 
Thank you so much for the response guys.
Here below is the peice of code which i tried it but failed Frown | :-(

Assembly SampleAssembly;
System.Reflection.AssemblyName objName = new AssemblyName();
objName.CodeBase = "D:\\Debug\\Utilities.EncryptParm.dll";
SampleAssembly = Assembly.Load(objName);
Type[] Types = SampleAssembly.GetTypes();

foreach (Type oType in Types)
{
Console.WriteLine(oType.Name.ToString());
if(oType.Name == "EncryptParm")
{
string[] encryptValues = {"4865","78043","GABRIELEZZ"};
string encryptKey = "CF2ASP?73ejb01";
Utilities.EncryptParm encryptor = new Utilities.EncryptParm();

string encryptedId = encryptor.Encrypt( encryptKey, encryptValues);
Console.WriteLine(encryptedId);
Console.ReadLine();
}
}

Please rectify me for any correction

Thanks In Advance

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.