Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
If I understand the question correctly, in C#, you can use the String.ToUpper() method to convert the text to uppercase. For example:
Console.WriteLine("vitalijus".ToUpper()); //returns VITALIJUS
You can also use String.ToLower() to make a string lowercase.
Hope that answers your question.
Last edited by BuzzerBee (Jan 17 2015 1:44:45 pm)
Offline
Wow, time to add more useful/useless information!
I was bored and created a FormatProvider class. <3
public class ToUpperStringFormat : IFormatProvider, ICustomFormatter
{
public object GetFormat(Type formatType)
{
if (formatType == typeof(ICustomFormatter)) return this;
else return null;
}
public string Format(string format, object arg, IFormatProvider formatProvider)
{
string result = arg.ToString();
switch (format.ToUpper())
{
case "U":
return result.ToUpper();
default:
return result;
}
}
}
Now you can do:
var user = "benjaminsen";
var message = "hello";
var output = String.Format(new ToUpperStringFormat(), "[Bot] {0:U}: {1}", user, message);
// output = [Bot] BENJAMINSEN: hello
So gud.
I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.
Offline
Wow, time to add more useful/useless information!
I was bored and created a FormatProvider class. <3
public class ToUpperStringFormat : IFormatProvider, ICustomFormatter { public object GetFormat(Type formatType) { if (formatType == typeof(ICustomFormatter)) return this; else return null; } public string Format(string format, object arg, IFormatProvider formatProvider) { string result = arg.ToString(); switch (format.ToUpper()) { case "U": return result.ToUpper(); default: return result; } } }
Now you can do:
var user = "benjaminsen"; var message = "hello"; var output = String.Format(new ToUpperStringFormat(), "[Bot] {0:U}: {1}", user, message); // output = [Bot] BENJAMINSEN: hello
So gud.
That is absolutely overkill for all intents and purposes and I don't recommend using that.
Offline
That is absolutely overkill for all intents and purposes and I don't recommend using that.
Agreed.
I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.
Offline
lrussell wrote:That is absolutely overkill for all intents and purposes and I don't recommend using that.
Agreed.
Agreed.
Offline
Pages: 1
[ Started around 1743879159.1375 - Generated in 0.048 seconds, 15 queries executed - Memory usage: 1.5 MiB (Peak: 1.65 MiB) ]