BOWHUNTIN TALK Homepage
Forum Home Forum Home > Ask our bow tuning experts > Ask the bowhunting experts
  New Posts New Posts
  FAQ FAQ  Forum Search   Register Register  Login Login

new string ?

 Post Reply Post Reply
Author
Message
monsterman7 View Drop Down
Senior Member
Senior Member
Avatar

Joined: 28 Jan 2010
Location: Orangeville
Online Status: Offline
Posts: 104
  Quote monsterman7 Quote  Post ReplyReply Direct Link To This Post Topic: new string ?
    Posted: 04 Feb 2010 at 7:41am
i am going to get a set of string and cables for my bow. should i get stock or get a set of aftermarket(winners choice,proline ect) made
Thanks
Back to Top
BrooksAdmin View Drop Down
Admin Group
Admin Group


Joined: 27 Jan 2010
Online Status: Offline
Posts: 50
  Quote BrooksAdmin Quote  Post ReplyReply Direct Link To This Post Posted: 08 Feb 2010 at 10:00am
I would only get the original manufactures strings when ever possible. These manufacturers know what strings and lengths work the best on their bows. Other manufacturers try but do not know the secrets that the bow companies use when making strings. ie measurements @ what # stretching to obtain lengths.
Back to Top
Guests View Drop Down
Guest Group
Guest Group
  Quote Guests Quote  Post ReplyReply Direct Link To This Post Posted: 26 Feb 2010 at 6:17am

Here we see the three safest and simplest string constructors. These can be used in any C# code, and are not unsafe. The example demonstrates making a string from a char array, from a series of repeated letters, and from a char array range.

=== Program that uses string constructors (C#) ===

using System;

class Program
{
static void Main()
{
@A();
@B();
@C();
}

static void @A()
{
//
// Create new string from char array.
//

char[] charArray = new char[3];
charArray[0] = 'a';
charArray[1] = 'b';
charArray[2] = 'c';

string exampleString = new string(charArray);
Console.WriteLine(exampleString);
Console.WriteLine(exampleString == "abc");
}

static void @B()
{
//
// Create new string of repeated characters.
//

string exampleString = new string('a', 10);
Console.WriteLine(exampleString);
Console.WriteLine(exampleString == "aaaaaaaaaa");
}

static void @C()
{
//
// Create new string from range of characters in array.
//

char[] charArray = new char[6];
charArray[0] = 'a';
charArray[1] = 'B';
charArray[2] = 'c';
charArray[3] = 'D';
charArray[4] = 'e';
charArray[5] = 'F';

string exampleString = new string(charArray, 0, 3);
Console.WriteLine(exampleString);
Console.WriteLine(exampleString == "aBc");
}
}

=== Output of the program ===

abc
True

aaaaaaaaaa
True

aBc
True
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Bulletin Board Software by Web Wiz Forums® version 9.56a [Free Express Edition]
Copyright ©2001-2009 Web Wiz

This page was generated in 0.016 seconds.