Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~602 People Reached
Favorite Forums
Member Avatar for balrogf

I have finished a project of mine in c# 2008. but now i need to redo it again to c# 2005 to create an installer(setup and deployment) but i realized that there's no .count method in c# 2005. Please show me the proper conversion of the code below(error is : …

Member Avatar for kvprajapati
0
125
Member Avatar for balrogf

i know this creates picturebox array [code] PictureBox[] choices = new PictureBox[4];[/code] how do i do choices[0] = "C:\\Users\\*****\\Desktop\\New Folder\\pslots7.jpg";?

Member Avatar for darkagn
0
85
Member Avatar for balrogf

i'm almost done with my video poker game. i need help finding the if the winning hand is a straight(a straight is five continous cards e.g. 3,4,5,6,7, ive made J,Q,K,A 11-14) HERE'S A CODE SNIPPET: [code] int[] arraydeck = { "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", …

Member Avatar for balrogf
0
156
Member Avatar for balrogf

how do i transfer the contents of a string array to an int array in relation to my code below: string[] sample= { "J♦", "3♦", "4♥", "Q♦", "9♥" }; convert(sample) [CODE] void sample(string[] straight) int[] straight2 = new int[straight.Length]; for (int i = 0; i < straight.Length; i++) { if …

Member Avatar for balrogf
0
236