Updated SmackMyBitch.cs
To maintain the consistency of the code updated all data type names to var
This commit is contained in:
parent
64f2d1b7dc
commit
53d5ab55f7
|
|
@ -19,14 +19,14 @@ namespace Hacker_Scripts
|
|||
{
|
||||
var twilio = new TwilioRestClient(TWILIO_ACCOUNT_SID, AUTH_TOKEN);
|
||||
|
||||
string[] randomMessages = {
|
||||
var randomMessages = {
|
||||
"Working hard",
|
||||
"Gotta ship this feature",
|
||||
"Someone fucked the system again"
|
||||
};
|
||||
|
||||
int randomIndex = new Random().Next(randomMessages.Count());
|
||||
String messageToSend = (randomMessages[randomIndex]);
|
||||
var randomIndex = new Random().Next(randomMessages.Count());
|
||||
var messageToSend = (randomMessages[randomIndex]);
|
||||
|
||||
var message = twilio.SendMessage(YOUR_NUMBER, HER_NUMBER, messageToSend);
|
||||
Console.WriteLine(message.Sid);
|
||||
|
|
|
|||
Loading…
Reference in New Issue